body {
    background: url(./imagens/fundo.webp);
    margin: 0;
}
.menu {
    align-items: center;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    height: 100vh;
    justify-content: center;
    width: 100vw;
}

.menu .banner {
    max-width: 50vw;
    width: 300px;
}

.menu .botoes {
}

.menu .botoes a {
    align-items: center;
    background-color: rgb(56 22 176);
    border-radius: 9999px;
    color: white;
    cursor: pointer;
    display: flex;
    font-family: Roboto, sans-serif;
    font-size: 16px;
    font-weight: 500;
    height: 40px;
    line-height: 1.25rem;
    margin-top: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    justify-content: center;
    text-decoration: none;
    text-transform: uppercase;
    transition-duration: .5s;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    width: 200px;
}

.menu .botoes a:hover {

}