body {
    margin: 0;
    padding: 0;
}

.conteudo {
    background-image: url(img/bg.jpg);
    width: 100vw;
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.tx-em-construcao {
    color: #FFF;
    font-weight: 300;
    font-size: 28px;
    margin-top: 5%;
    text-align: center;
}

h2 {
    color: #9897A7;
    font-size: 22px;
    font-weight: 400;
    text-align: center;
    line-height: 50px;
}

.botao {
    background-color: #FFC941;
    color: #2A284D;
    font-weight: 300;
    padding: 8px 16px;
    border-radius: 9px;
    border: none;
    text-decoration: none;
}

.botao:hover {
    background-color: #e4a916;
    color: #141324;
    transition: 1s ease-out;
    padding: 10px 18px;
    font-size: 23px;
}