@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&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&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: rgb(230, 230, 230);
}

#container {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.825); 
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.386);
    padding: 90px; 
    border-radius: 10px;
}

#container > h1 {
    font-weight: 700;
    border-radius: 5px;
    background-color: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.386);
    padding: 15px;
}

#text {
    background-color: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.386);
    padding: 50px;
    border-radius: 8px;
    margin-top: 40px;
}

#primaria {
    margin-bottom: 30px;
}

#primaria > #milessegundo {
    font-size: 15px;
}

#primaria > p {
    font-size: 20px;
    font-weight: 600;
}

#primaria > span {
    font-size: 2.5rem;
    font-weight: 600;
}

#butons > button {
    padding: 10px;
    border: none;
    border-radius: 5px;
    color: rgb(255, 255, 255);
    background-color: rgb(6, 72, 239);
    font-size: 19px;
    font-weight: 600;
    cursor: pointer;
    margin-left: 20px;
}

#butons > button:hover {
    background-color: rgb(0, 46, 162);
}

/*MEDIA QUERY*/
@media screen and (max-width: 792px){

    #text {
        max-width: 270px;
    }

     #primaria {
       display: flex;
     }

     #primaria > span {
        font-size: 30px;
        margin-left: 5px;
     }

    
    /*BOTÕES*/
    #butons {
        display: flex;
        flex-direction: column;
    }

    #butons > button {
        margin-bottom: 20px;
    }
}

