@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

html, body{
    width: 100%;
    height: 100%;
    background-color: #272727;
}

header {
    background-image: url('../img/bg-header.jpg'); /* Pega a imagem de fundo */
    background-repeat: no-repeat; /* Faz com que a imagem de fundo não repita */
    background-size: cover; /* Faz a imgem de fundo preencher todo o espaço em que ela está */
    background-position: center; /* Centraliza a imagem de fundo */

    height: 300px;
    width: 100%;
    display: flex;
    align-items: center;
}

header h1{
    padding: 5rem;
    color: #272727;
    font-size: 4rem;
    text-shadow: .1rem .1rem #ffffff80;
}

section#infos{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5rem;
}

section#infos div#txt{
    padding: 5rem;
    color: #fff;
    text-align: center;
}

section#infos div#txt h2{
    padding: 1rem;
    font-size: 5rem;
    font-weight: 400;
}

section#infos div#txt h3{
    padding: 2rem;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

section#infos div#txt button{
    padding: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    background-color: #6c8e29;
    border: 2px solid #6c8e29;
    border-radius: 2rem;
    transition: all .5s ease-out;
    cursor: pointer;
}

section#infos div#txt button:hover{
    transform: scale(1.1);
    box-shadow: 0px 0px 10px 1px #ffffff50;
}

section#infos div#img{
    display: flex;
    justify-content: center;
}

section#infos div#img img{
    width: 60%;
    border-radius: 3rem;
    transform: scaleX(-1);
}