.calendar {
    z-index: 900;
    margin-top: 125px;
    width: 100%;
    border: 1px solid black;
    font-size: 20px;
    text-align: center;
}

.month-year {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    color: #ddd;
}

#prev-btn,
#next-btn {
    font-size: 18px;
    cursor: pointer;
    color: white;
    background-color: black;
    border: none;
    outline: none;
}

.days-of-week {
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    color: #eee;
}

.days-of-week div {
    width: calc(100% / 7.1);
}

.days {
    display: flex;
    flex-wrap: wrap;
    height: max-content;
    padding: 10px;
    color: #fff;
}

.days div {
    width: calc(100% / 7.5);
    display: flex;
    padding: 5px;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #ddd;
}

.event {
    color: aqua;
    cursor: pointer;
}

.movie-watched:hover {
    text-decoration: underline;
    cursor: pointer;
}

.aimg {
    width: 100px;
    margin-right: 20px;
    margin-left: 20px;
    border-radius: 100px;
    cursor: pointer;
    border: solid black;
    float: left;
}

.aimg:hover {
    border: solid white;
}