.row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.note.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.note.content h2 {
    align-self: flex-start;
    margin-bottom: 10px;
}

.n_months {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #FFB320;
}

.n_months div {
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 10vh;
    color: #1C2334;
    cursor: pointer;
}


.calendar {
    width: calc(28vw + 700px);
    display: flex;
    flex-direction: column;
    margin-top: 0;
    margin-bottom: 5%;
}

.week {
    color: #f5f8ff;
}

.row div {
    width: calc(4vw + 100px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #f5f8ff;
    height: 10vh;
    background-color: #1C2334;
}

.row div a {
    cursor: pointer;
    font-size: 20px;
}

.dates.active {
    display: block;
}

.dates {
    display: none;
}

.n_months .active {
    color: #FFB320;
    background-color: #1C2334;
}

.dates a div {
    color: #FFB320;
}

@media screen and (max-width:1100px) {
    .row div {
        width: calc(1vw + 80px);
        height: 7vh;
    }

    .calendar {
        width: calc(7vw + 560px);
    }

    .n_months div {
        height: 7vh;
    }
}

@media screen and (max-width:700px) {
    .row div {
        width: calc(0.2vw + 50px);
        height: 5vh;
    }

    .calendar {
        width: calc(1.4vw + 350px);
    }

    .n_months div {
        height: 5vh;
    }
}

@media screen and (max-width:500px) {
    .row div {
        width: calc(0.2vw + 40px);
        height: 4vh;
    }

    .calendar {
        width: calc(1.4vw + 280px);
    }

    .n_months div {
        height: 4vh;
    }
}