body {
    display: flex;
    flex-direction: column;
    min-width: 375px;
}

header {
  flex: 0 120px;
}

main {
  flex: 1 calc(100vh - 180px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  background-color: rgb(33, 26, 80);
}

.newevent {border-radius: 8px; height: 90px; width: 200px; font-size: 25px;}
.newevent:hover {background-color: lightgreen;}
.accept {border-radius: 8px;}
.accept:hover {background-color: black; color: white;}
.reject {border-radius: 8px;}
.reject:hover {background-color: black; color: white;}
.dismiss {border-radius: 8px;}
.dismiss:hover {background-color: black; color: white;}
.addspoon {border-radius: 8px;}
.addspoon:hover {background-color: black; color: white;}
.soft {border-radius: 8px;}
.soft:hover {background-color: darksalmon;}
.cancel {border-radius: 8px;}
.cancel:hover {background-color: red;}

footer {
  flex: 0 30px;
}

.calandertop {
  flex: 1;
  display: flex;
  gap: 70px;
  flex-direction: row !important;
  list-style: none;
  align-items: center;
  justify-content: space-around;
}

.notifications {
  flex: 1;
  display: flex;
  flex-direction: column;
  list-style: none;
  align-items: center;
  justify-content: space-around;
}

menu {
  flex: 1;
  display: flex;
  flex-direction: row !important;
  list-style: none;
  align-items: center;
  justify-content: space-around;
}

.navbar-brand {
  padding-left: 0.3em;
}

menu .nav-item {
  padding: 0 0.3em;
}

footer a {
  float: right;
}

@media (max-height: 600px) {
  header {
    display: none;
  }
  footer {
    display: none;
  }
  main {
    flex: 1 100vh;
  }
}
