html {
    font-family: "Roboto", sans-serif;
    background: linear-gradient(to top, white, white);
    height: 100vh;
}
h1 {
    color: black;
}
#application {
    background-color: lightblue;
    padding:10px;
    border-radius: 1em;
}
#application-container {
    width: 100%;
    justify-content: center;
    align-items: center
}

.page-portion {
    height: max-content;
    margin: 10px;
    border-radius: 1em;
    background-color: lightblue;
    padding: 10px;
}

#calendar {
    background-color: white;
    padding: 10px;
    border-radius: 1em
}
.calender-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.calender-el {
    padding: 5px;
    width: 100%;
    text-align: center;
    border-radius: 1em;
    margin: 5px;
}
.active {
    background-color: lightgreen;
}
.month-mover:hover {
    background-color: lightsalmon;
}