body {
    background-color: #202020;
    color: #bbc1cc;
    font-family: Arial, sans-serif;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}
h1 {
    color: #Fe4A58;
}
p {
    color: #969696;
    font-size: 18px;
}
.botao {
    background-color: #2d3945;
    color: #bbc1cc;
    border: none;
    padding: 15px 30px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 20px;
    text-decoration: none;
    display: inline-block;
}
.botao:hover {
    background-color: #Fe4A58;
    color: white;
}
