.container{
    background-color: #0C0816;
    display: flex;
    text-align: center;
    color: white;
    flex-direction: column;
    height: 100%;
    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;
    font-size: 20px;
}

.projects{
    margin-top: 30px;
}

.firstProject p{
    margin: 100px 0px 25px 20%;
    max-width: 60%;
}

.firstProject img{
    width: 75%;
}

.third p{
    margin: 100px 0px 25px 20%;
    max-width: 60%;
}

.github{
    margin: 70px 0px 25px 10px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

/* Responsividade */
@media screen and (max-width: 1400px) {
    p{
    font-size: 20px;
    }
    .hbutton, button{
        font-size: 18px;
    }

    h1{
        font-size: 40px;
    }

    .github img{
        height: 60px;
        margin-left: 5px;
    }

    
}     
@media screen and (min-width: 1401px) {
    p, button{
    font-size: 25px;
    }

    h1{
        font-size: 50px;
        margin-bottom: 60px;
    }

    .github img{
        height: 90px;
        margin-left: 5px;
    }


}   


@media screen and (min-width: 1401px) and (min-height: 850px) {
    .secondProject img{
        width: 35%;
        margin: 0px 15px;
    }

    .secondProject p{
        display: flex;
        align-items: center;
        margin: 100px 0px 25px 20%;
        max-width: 60%;
    }

    .third img{
        border-radius: 500px;
        max-width: 80%;
        height: 400px;
    }
}

@media screen and (max-width: 1400px) and (min-height: 850px) {
    
    .secondProject{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .secondProject img{
        width: 50%;
        margin: 30px 15px 0px 15px;
    }

    .secondProject p{
        display: flex;
        justify-content: center;
        margin: 100px 0px 25px 0px;
        max-width: 60%;
    }

    .third img{
        border-radius: 500px;
        max-width: 80%;
        height: 300px;
    }
}

@media screen and (max-width: 1099px) and (max-height: 849px) {

    .secondProject{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .secondProject img{
        width: 50%;
        margin: 30px 15px 0px 15px;
    }

    .secondProject p{
        display: flex;
        justify-content: center;
        margin: 100px 0px 25px 0px;
        max-width: 60%;
    }

    .third img{
        border-radius: 500px;
        max-width: 80%;
        height: 300px;
    }
    
}
@media screen and (min-width: 1100px) and (max-height: 849px) {
    .secondProject img{
        width: 35%;
        margin: 0px 15px;
    }

    .secondProject p{
        display: flex;
        align-items: center;
        margin: 100px 0px 25px 20%;
        max-width: 60%;
    }

    .third img{
        border-radius: 500px;
        max-width: 80%;
        height: 300px;
    }
}

button{
    cursor:pointer;
}

.github img:hover{
    transform: scale(1.2);    
}
