*{
    margin: 0;
    padding: 0;
    box-sizing: none;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    scroll-behavior: smooth;
}
body{
    background-color: #f1f1f1;
}
main{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#botoes_home{
    display: flex;    
    width: 100%;
    gap: 20px;
    margin-top: 20px;
    list-style: none;
    
}

.botao{
    display: flex;
    border: 2px solid black;
    width: 150px;
    height: 40px;
    align-items: center;
    text-align: center;
    justify-content: center;
    border-radius: 10px;
    text-decoration: none;
    color: black;
    font-weight: bold;
}
footer{
    background-image: linear-gradient(to right, #6b7fc1,#00a0bc,#47ac61);
    height: 100px;
    margin-top:50px ;
}