#home{
    display: none;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
main div.container {
    margin: 10px;
    text-align: center;
    /* border: 1px solid black; */
    /* background-color: black; */
}
main div.container div.botoes ul{
    list-style-type: none;
}
main div.container div.botoes a {
    display: block;
    padding: 12px 25px;
    margin: 8px;
    font-size: 1.2em;
    background: linear-gradient(45deg, #ffb192, #ffd29a);
    color: #333;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.botoes a:hover {
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(2px);
    color: #222;
}