@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Space+Mono&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html,
body{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    overflow: hidden;
}

.container{
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;   
    justify-content: center; 
    background-color: #f5f5f5;
    line-height: 1.6;
    letter-spacing: 0.5px;
    font-size: 18px;
    overflow: hidden;
    
}


h1{
    align-self: flex-start;
    font-family: serif;
    font-size: 40px;
    font-weight: 700;
}

p{
    text-align: justify;
}

a{
    margin-top: 40px;
    margin-bottom: 10px;
    text-decoration: none;
    color: #fff;
    background-color: #F54331;
    border: none;
    border-radius: 30px;
    padding: 10px;
    font-size: 15px;
    transition: all 0.1s ease;
}

a:hover{
    background-color: #F51600;
    transform: scale(1.1);
}

@media screen and (max-width: 1350px){
    .container{
        width: 50%;
        font-size: 17px;
    }
    h1{
        font-size: 35px;
    }
}

@media screen and (max-width: 1150px){
    .container{
        width: 55%;
    }
}

@media screen and (max-width: 920px){
    .container{
        width: 60%;
    }
}

@media screen and (max-width: 768px){
    .container{
        width: 83%;
        font-size: 16px;
    }
    h1{
        font-size: 30px;
    }
    a{
        margin-top: 30px;
        font-size: 14px;
    }
}

@media screen and (max-width: 480px){
    .container{
        width: 90%;
        font-size: 15px;
        letter-spacing: 0.2px;
    }
    h1{
        font-size: 25px;
    }
}
