h1 {
    text-align: center;
    margin-bottom: 20px;
}
h2 {
    font-family: "Chewy", system-ui;
    font-size: 22px;
    color: #000;
    margin-bottom: 5px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 8px;
}
aside {
    position: sticky;
    height: 100%;
    top: calc(var(--navbar-height) + var(--navbar-margin-bottom));
}
aside>div {
    padding: 20px;
}
#container {
    display: flex;
    flex-direction: row;
    padding: 0 20px 20px 20px;
    gap: 30px;
}
#calendar {
    background-color: var(--color-rose-clair);
    border-radius: 14px;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    width: 280px;
    min-width: 280px;
}
#calendar>p {
    font-size: 11px;
    margin-top: 15px;
    color: #555;
    font-style: italic;
}
#events {
    width: 100%;
    padding: 15px;
}
#events h2 {
    font-size: 26px;
    margin-bottom: 20px;
}
#events h2:nth-last-of-type(1) {
    margin-top: 20px;
}
.test {
    width: 90%;
    height: 500px;
    background-color: var(--color-rose-clair);
}