@import url('https://fonts.googleapis.com/css2?family=New+Amsterdam&display=swap');
@import url('https://fonts.googleapis.com/css2?family=New+Amsterdam&family=Orbitron:wght@400..900&display=swap');
*{
    margin: 0;
    padding: 0;
}

body
{
    height: 100vh;
    box-sizing: border-box;
    background-color: black;
    color: white;
}

.rodape
{
    font-family: "New Amsterdam", "sans-serif";
    padding: 24px;
    text-align: center;
    color: black;
    background-color: #fd4322;
    font-size: 24px;
    font-weight: 400;
}

.destaqueTitulo{
    color: #fd4322;
}

.apresentacao{
    padding: 10% 12%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.apresentacao__conteudo{
    width: 615px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.apresentacao__conteudo__titulo{
    font-size: 30px;
    font-family: "Orbitron", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
}

.apresentacao__conteudo__texto{
    font-size: 20px;
    font-family: "New Amsterdam", "sans-serif";
    font-weight: 400;
    font-style: normal;
}

.apresentacao__links{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 32px;
}

.apresentacao__links__botoes{
    display: flex;
    justify-content: center;
    gap: 16px;
    border: 2px solid  #fd4322;
    width: 280px;
    font-size: 24px;
    margin: 5px;
    padding: 21.5px 0px;
    border-radius: 16px;
    color: white;
    text-decoration: none;
    text-align: center;
    font-family: "New Amsterdam", "sans-serif";
    font-weight: 400;
    font-style: normal;
}


.apresentacao__links__botoes:hover{
    background-color: #272727;
}