.container{
    background-color: #0C0816;
    display: flex;
    text-align: center;
    color: white;
    flex-direction: column;
    height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
}

.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;
}

button{
    background: transparent;
    border: none;
    color: white;
    cursor:pointer;
}

.gmail{
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 50px;
}

img:hover{
    transform: scale(1.2);
}

/* Responsividade */

@media screen and (max-height: 849px) and (min-width: 800px) {
    p, button{
    font-size: 18px;
    }    

    h1{
        font-size: 40px;
        margin-top: 50px;
    }

    .gmail p{
        margin-left: 30px;
        font-size: 25px;
    }

    .gmail img{
        width: 100px;
        height: 100px;
        padding-top: 20px;
    }

    .linkedin{
        margin-right: 80px;
        margin-left: 10%;
        width: 70%;
    }

    .gitandlink{
        display: flex;
        justify-content: center;
        flex-direction: row;
    }

    .github{
        width: 70%;
        padding-top: 30px;
    }
}   

@media screen and (max-height: 849px) and (max-width: 799px) {
    p, button{
    font-size: 18px;
    }    

    h1{
        font-size: 30px;
        margin-top: 50px;
    }

    .gmail p{
        margin-left: 30px;
        font-size: 20px;
    }

    .gmail img{
        width: 80px;
        height: 80px;
        padding-top: 20px;
    }

    .linkedin{
        margin-right: 80px;
        margin-left: 10%;
        width: 70%;
    }

    .gitandlink{
        display: flex;
        justify-content: center;
        flex-direction: row;
    }

    .github{
        width: 70%;
        padding-top: 30px;
    }
}  

@media screen and (max-width: 1400px) and (min-height: 850px) {
    p, button{
    font-size: 18px;
    }    

    h1{
        font-size: 40px;
        margin-top: 50px;
    }

    .gmail p{
        margin-left: 30px;
        font-size: 25px;
    }

    .gmail img{
        width: 100px;
        height: 100px;
        padding-top: 20px;
    }

    .linkedin{
        width: 400px;
    }

    .gitandlink{
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .github{
        width: 150px;
    }
}     
@media screen and (min-width: 1401px) {
    p, button{
    font-size: 25px;
    }

    h1{
        margin-top: 100px;
        font-size: 50px;
        margin-bottom: 60px;
    }

    .gmail p{
        margin-left: 30px;
        font-size: 30px;
    }

    .gmail img{
        width: 150px;
    }

    .linkedin{
        margin-right: 80px;
        width: 400px;
    }  

    .gitandlink{
        display: flex;
        justify-content: center;
        flex-direction: row;
    }
    .github{
        width: 150px;
        padding-top: 50px;
    }
}  

