html{
  min-height: 100%;
  color: navajowhite;
  font-family: Constantia, "Times New Roman", "Times New Roman", serif;
  font-weight: normal;
}

.content{
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

header{
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  height: 180px;
  z-index: 100;
}

header::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(243, 158, 96, 0.7) 0%, rgba(243, 158, 96, 0) 80%);
  backdrop-filter: blur(20px);
  mask: linear-gradient(to top, transparent, rgb(243, 158, 96) 35%);
}

header img{
  margin: 10px;
  height: inherit;
}

body{
  background: linear-gradient(to bottom, rgb(124, 68, 79) 0%, rgb(159, 82, 85) 50%, rgb(225, 106, 84) 100%) no-repeat;
  background-size: cover;
  height: 100%;
  margin-top:180px !important;
  transition: margin-top 0.4s ease-out, opacity 0.7s;
  opacity: 0;
}

h2, h3{
  text-align: center;
}

.text{
  display: block;
  line-height:1.4;
  max-width: 800px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 1.25rem
}

.active{
  text-decoration: underline;
}

.open{
  display: block !important;
}

.menu{
  font-family: "Rye", serif !important;
  background-color: rgba(255, 222, 173, 0.1);
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 222, 173, 0.4);
  border-radius: 0.5rem;
  padding: 10px;
  position: fixed;
  line-height: 2;
  font-size: 1.25rem;
  right: 20px;
  width: 180px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 100;
}

.menu a{
  color: navajowhite;
  font-weight: bold;
  text-decoration: none;
}

.menu-dark a{
  color: navajowhite;
  text-decoration: none;
}

#calendar{
  display: block;
  line-height:1.4;
  max-width: 800px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 1.25rem;
  border-radius: 5px
}

#sidebar-button{
  display: none;
  position: relative;
  float: right;
  background: url("img/menu_icon.svg");
  width: 2rem;
  height: 2rem;
  border: none;
}

@media screen and (width < 1220px){
  #sidebar-button{
    display: block;
  }
  #sidebar-options{
    display: none;
  }
  .menu{
    width: auto;
    top:auto;
    bottom: 20px !important;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  .menu-dark a{
    color: rgb(17, 17, 17) !important;
  }
  .menu-dark{
    color: rgb(17, 17, 17) !important;
    border: 1px solid rgba(34, 34, 34, 0.3) !important;
  }
}
