main {
    display: flex;
    gap: 10px;
}
main section {
    width: 80%; 
}
main aside {
    width: 20%;
}
@media (max-width: 900px) {
    main{
        flex-direction: column;
    }
    main aside{
        display: none;
    }
    main section{
        width: 100%;
    }
}

aside{
    background-color: #FFFFFFBF; 
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

h3{
    color: #6D445D;
    font-size: 30px;
    text-transform: uppercase;
    font-family: "sageffine";
    font-weight: bold;
    text-align: center;
    margin: 0;
    padding: 20px;
    transition: none;
}

aside a{
    text-decoration: none;
    color: inherit;
    display: inline-block;
    width: 80%;
    background-color: #BFD8BCBF;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
aside a:hover{
    transition: transform 0.5s ease;
    transform: scale(1.1)
}