.container{
    background-color: #0C0816;
    display: flex;
    text-align: center;
    color: white;
    flex-direction: column;
    font-family: Arial, Helvetica, sans-serif;
    height: 100vh;
}

.header{
    background-color: #1D1333;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 60px;
    margin: 10px 10px 0px 10px;
}

.headerButtons{
    display: flex;
    flex-direction: row;
    padding-left: 40px;
}

.hbutton{
    margin-right: 30px;
}

a {
    text-decoration: none;
    color: white;
}

.language{
    padding-right: 40px;
}

.php-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-direction: column;
}

.form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-direction: column;
    margin-bottom: 2rem;
}

.formItem {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
}

.submit {
    width: 128px;
    background: transparent;
    color: white;
    border-radius: 16px;
    border: solid;
    padding: 10px;
}

.input {
    width: 250px;
    background: transparent;
    padding: 10px;
    border: solid;
    border-color: white;
    border-radius: 20px;
    color: white;
}

button{
    background: transparent;
    border: none;
    color: white;
    font-size: 20px;
    cursor:pointer;
}

img{
    border-radius: 243px;
    height: 160px;
    margin-top: 30px;
}

.description p{
    padding-left: 10%;
    max-width: 80%;
}

.description{
    display: flex;
    flex-direction: column;
    background-color: #181428;
    border-radius: 60px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 0px 15%;
}


/* Responsividade */

/* Big screens */
@media screen and (min-height: 850px) {
    .container{
        height: 100vh;
    }
}
@media screen and (max-width: 1400px) and (min-height: 850px){
    .hbutton, button{
    font-size: 21px;
    }
}
@media screen and (min-width: 1401px) and (min-height: 850px) {
    .hbutton, button{
    font-size: 25px;
    }
    h1{
        font-size: 40px;
        margin-bottom: 60px;
    }
}  
@media screen and (max-width: 1000px) and (min-height: 850px) {
    img{
        height: 180px;
    }
}    
@media screen and (min-width: 1001px) and (min-height: 850px){
    img{
        height: 260px;
    }
}
@media screen and (max-width: 599px) and (min-height: 850px) {
    h1{
        font-size: 25px;
        }
}
@media screen and (max-width: 1400px) and (min-width: 600px) and (min-height: 850px) {
    h1{
        font-size: 30px;
        }
}     
@media screen and (max-width: 699px) and (min-height: 850px) {
    .description p{
        font-size: 20px;
    }
}
@media screen and (max-width: 1449px) and (min-width: 700px) and (min-height: 850px){
    .description p{
        font-size: 23px;
    }
}     
@media screen and (min-width: 1450px) and (min-height: 850px){
    .description p{
        font-size: 24px;
    }
}

/* Small Screens */
@media screen and (max-height: 849px) and (max-width: 849px){
    .container{
        height: 100%;
    } 
    .description{
        margin-bottom: 10px;
    }
}
@media screen and (max-height: 849px) and (min-width: 850px){
    .container{
        height: 100vh;
    } 
}
@media screen and (max-width: 1400px) and (max-height: 849px){
    .hbutton, button{
    font-size: 18px;
    }
}          
@media screen and (max-height: 849px) and (min-width: 1160px){
    h1{
        font-size: 25px;
    }
}
@media screen and (max-width: 1159px) and (max-height: 849px) {
    .description p{
        font-size: 17x;
    }
    h1{
        font-size: 22px;
    }

    img{
        height: 150px;
    }
}