body {
    font-family: "JetBrains Mono", monospace;
    font-optical-sizing: auto;
    font-style: normal;
    width: 100vw;
    height: 100vh;
    margin: 0;
    background-color: #EDEDED;
}

* {
    box-sizing: border-box;
}

.login_overlay {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: 0;
    background-color: #EDEDED;
}

#logo_container {
    display: flex;
    width: 200px;
    height: fit-content;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#logo_container img {
    width: 100%;
}

#loginForm {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 500px;
    height: 500px;
    background-color: #353535;
    border-radius: 30px;
    margin: 15px;
    padding: 50px;
    box-shadow: 2px 2px 10px 0 #00000035;
}

#loginForm h1 {
    color: white;
    font-size: 2em;
    width: 100%;
    text-align: left;
    font-weight: 300;
    margin: 0;
    margin-bottom: 20px;
}

#email,
#password {
    font-family: "JetBrains Mono", monospace;
    width: 100%;
    font-weight: 600;
    height: 30px;
    font-size: 1.5em;
    padding: 25px 20px;
    border: none;
    border-radius: 10px;
    margin-bottom: 15px;

}

#loginInput {
    font-family: "JetBrains Mono", monospace;
    align-self: self-end;
    display: flex;
    width: 50%;
    height: 50px;
    font-size: 1.5em;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    margin: 0;
    margin-top: 20px;
    background-color: #F26178;
    color: white;
    transition: .15s all ease-in-out;
}

#loginInput:hover {
    color: #353535;
    background-color: white;
}

.navigation {
    padding: 20px 50px;
    width: 100%;
    height: 7.5%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: right;
}

.navigation nav {
    display: flex;
    flex-direction: row;
    justify-content: right;
    align-items: center;
    width: 40%;
    height: 100%;
}

.navigation nav h1 {
    width: fit-content;
    height: fit-content;
    font-size: 1.2em;
}

.burger_menu {
    margin-left: 20px;
    width: 30px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.burger_menu div {
    border-radius: 5px;
    width: 30px;
    height: 4px;
    background-color: black;
}

.main_page {
    width: 100%;
    height: 92.5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 50px;
}

.navbar {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    background-color: #00000080;
    z-index: 1000;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
}

#close_container {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#close_container div {
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: black;
}

#wrongPassword {
    margin: 0;
    padding-top: 5px;
    align-self: flex-end;
    color: #F26178;
    font-size: 1em;
}

.menu {
    position: relative;
    width: 40%;
    height: 100%;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.menu ul {
    height: 95%;
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}

.menu ul li {
    padding: 10px 0;
}

.menu ul li a {
    font-size: 1.5em;
    text-decoration: none;
    color: #353535;
}

#logout_button {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
    text-decoration: none;
    color: #353535;
}

#calendar_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 90%;
    background-color: white;
    font-weight: 600;
}

#header {
    position: absolute;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    top: calc(5% + 17px);
    width: 60%;
    height: 10%;
}

#MonthDisplay {
    font-size: 2em;
    font-style: italic;
}

#currentDay {
    color: #F26178;
}

#nextButton,
#backButton {
    border: none;
    font-size: 3em;
    background: none;
    padding: 0 20px;
    transition: all .25s ease-in-out;
}



#nextButton:hover,
#backButton:hover {
    color: #626262;
    transform: translateY(2px);
}

#week_days {
    display: flex;
    width: 90%;
    height: 10%;
    justify-content: space-around;
    align-items: flex-end;
}

#calendar {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    height: 85%;
    width: 90%;
}

.day {
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: 14%;
    height: 16%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    border-radius: 5px;
    padding: 5px;
    transition: all .15s ease-in-out;
}

.day:hover {
    background-color: #EDEDED;
}

.padding{
    background-color: #FFFFFF !important;
}

.event{
    order: 1;
    width: 100%;
    height: fit-content;
    margin: auto;
    align-self: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #F26178;
    color: white;
    border-radius: 5px;
}

#nameParag{
    font-size: 100%;
    padding: 0;
    margin: 0;
}

#timeParag{
    padding: 0;
    margin: 0;
    font-size: 80%;
}

.day p{
    order: 2;
    margin: 0;
    padding: 0;
}

.closeButton{
    position: absolute;
    top: 10px;
    right: 10px;
}

#newEventModal,
#deleteEventModal {
    display: none;
    position: absolute;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 650px;
    height: 750px;
    background-color: white;
    box-shadow: 0px 0px 15px 0 #35353570;
    z-index: 2000;
    border-radius: 10px;
}

#newEventModal input,
#deleteEventModal input{
    width: 70%;
    height: 5%;
    margin: 10px 0;
}

#newEventModal select,
#deleteEventModal select{
    width: 70%;
    height: 5%;
}

#newEventModal button,
#deleteEventModal button{
    width: 35%;
    height: 5%;
    margin: 10px 0;
}