body {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  background: linear-gradient(to right, gray, lightgray 20%, lightgray 80%, gray);
}

* {
  box-sizing: border-box;
  margin: 0;
}
.menu {
  display: flex;
  flex-direction: row;
  height: 60px;
  justify-content: center;
  background: linear-gradient(to bottom, #4fdf7b, #00a542, #008735);
  align-items: center;
  border-bottom: 1px solid #0e7200;
}

.menu-button {
  font-size: 17px;
  font-family: sans;
  color: white;
  height: max-content;
  cursor: pointer;
  height: 50%;
  padding: 0 10px;
  border-left: 1px solid #6ed36e;
  text-decoration: none;
  display: flex;
}

.menu-button:first-child {
  border-left: none;
}

.menu-button:hover {
  text-decoration: underline;
}

.menu-button span {
  margin: auto;
}

.header-column {
  display: flex;
  flex-direction: column;
  padding-bottom: 100px;
}

.header-circles {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 5px;
  margin: 5px;
}

.header-circle {
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 100%;
  position: relative;
  cursor: pointer;
  background: white;
  box-shadow: 0 10px 5px 2px #00000078;
}

.header-circle img {
  height: 50px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.header-logos {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.header-logos img {
  height: 300px;
}

.header-logos a {
  display: flex;
  margin: auto;
  text-decoration: none;
}

.header-logos div {
  display: flex;
  width: 100%;
}

.header-logo img {
  margin: auto;
  transform: translate(0px, 30px) scale(1.5);
}

.header-logo {
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  position: relative;
  width: 60%;
  box-shadow: 0 0 10px 0 #0005;
  z-index: 0;
  padding: 10px;
  gap: 20px;
  min-width: min-content;
  background: white;
  margin: 20px auto;
  border-radius: 30px;
  box-sizing: border-box;
}


.content-column {
  width: 100%;
}

form {
  display: flex;
  flex-direction: column;
  width: max-content;
}

.footer {
  padding: 100px 200px;
  background: #0047b3;
  z-index: 1;
  color: white;
  font-family: sans-serif;
  text-align: center;
  border-radius: 30px 30px 0 0;
  box-shadow: 0 0 10px 0 #0005;
}

.header {
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 10px 0 #0005;
}

.header-background {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.header-mountains {
  background: url(mountains.png);
  background-size: cover;
  background-position: 0 70%;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  box-shadow: inset 0 0 100px 10px #00000063, inset 0 -20px 40px -20px #00000063, inset 0 20px 40px -20px #00000063;
  filter: brightness(80%);
  background-attachment: fixed;
}

.calendar-container {
  width: 300px;
  margin: 20px auto;
  text-align: center;
  border: 1px solid gray;
  border-radius: 4px;
  background: lightgray;
  transform: scale(0.8) translate(calc(-10% - 8px), calc(-10% - 8px));
}

.controls {
  justify-content: space-between;
  display: flex;
  align-items: center;
  background: gray;
}

.calendar {
  display: grid;
  grid-template-columns: repeat(7, calc(100% / 7 - 4px + 4px / 7));
  grid-gap: 4px;
  padding: 5px;
}

.day-name, .day {
  text-align: center;
  padding: 6px 0;
  border-radius: 4px;
  border: 1px solid gray;
  background: white;
}

.day-name {
  border: 1px solid gray;
  color: gray;
  background: none;
  font-weight: bold;
}

.day {
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

.day:hover {
  background: #ddd;
}

.day.event {
  background: #ffa;
}

.month-label {
  grid-column: span 7;
  font-weight: bold;
  margin-bottom: 4px;
}

.empty-day {
  border: 0;
  background: 0;
  cursor: default;
}

.empty-day:hover {
  background: 0;
}

h3 {
  margin: 0;
  margin-bottom: 20px;
  font-size: 25px;
  font-family: sans-serif;
}

h5 {
  margin: 0;
  margin-bottom: 20px;
  font-size: 20px;
  font-family: sans-serif;
}

input[type="text"] {
  border-radius: 3px;
  border: 1px solid gray;
  padding: 5px 7px;
  font-family: sans-serif;
  font-size: 20px;
  margin-bottom: 2px;
}

input[type="submit"] {
  border-radius: 3px;
  border: 1px solid gray;
  padding: 5px 7px;
  font-family: sans-serif;
  font-size: 20px;
  margin-bottom: 2px;
  width: max-content;
}

.controls button {
  border: 1px solid gray;
  padding: 5px 10px;
  margin: 5px;
  border-radius: 4px;
  cursor: pointer;
}

.controls button:hover {
  background: lightgray;
}

#monthYear {
  color: white;
  padding: 5px 7px;
  font-weight: bold;
  font-family: sans-serif;
}

.non-footer {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content {
  flex: 1 1 auto;
}

.header-text {
  z-index: 1;
  background: linear-gradient(45deg, #ff0000, #ffa8a8);
  padding: 50px;
  color: white;
  font-size: 47px;
  font-weight: bold;
  font-family: sans-serif;
  margin-top: 2px;
  box-shadow: inset -10px -20px 50px -10px #00000050, 0 0 10px 0 #0005;
  text-shadow: 7px 5px 10px #00000078;
  /* padding-left: 80px; */
  border-radius: 30px;
  margin: 10px auto;
  width: 80%;
}

p {
  font-family: sans-serif;
}

.sponsor {
  display: flex;
  flex-direction: row;
  cursor: pointer;
  gap: 20px;
  align-items: start;
  border: 2px solid gray;
  padding: 20px;
  border-radius: 20px;
  box-shadow: inset -10px -20px 50px -10px #00000030, 3px 10px 10px 0 #00000040;
}

.sponsor-vert {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  position: relative;
  height: 100%;
  padding-bottom: 31px;
  box-sizing: border-box;
}

.sponsor h3 {
  font-size: 21px;
  margin: 0;
}

span.sponsor-underlink {
  font-family: monospace;
  font-size: 15px;
  color: #3a3ae1;
  text-decoration: underline;
  text-align: right;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.sponsors {
  flex-wrap: wrap;
  gap: 10px;
  box-sizing: border-box;
}

.header-register {
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-sizing: border-box;
}

.header-register img {
  height: 150px;
  border-radius: 15px;
  box-shadow: 0 10px 5px 2px #00000078;
  cursor: pointer;
  transition: filter 0.25s;
}

.header-register img:hover {
  filter: brightness(80%);
}

.header-register span {
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  z-index: 2;
  background: #e2e1e5;
  color: #9c0909;
  text-shadow: 0 2px 2px #870000;
}

.pretty-button {
  padding: 10px 20px;
  border-radius: 15px;
  font-size: 30px;
  background: #147ee4;
  color: #fff;
  font-weight: bold;
  font-family: sans-serif;
  margin: auto;
  box-shadow: 0 10px 5px 2px #00000078;
  cursor: pointer;
  transition: filter 0.25s;
  /* scale: 1.5; */
  text-decoration: none;
}

.pretty-button:hover {
  filter: brightness(80%);
}

.header-circle {
  transition: filter 0.25s;
}

.header-circle:hover {
  filter: brightness(80%);
}

.header-logo {
  filter: drop-shadow(0 15px 2px #00000078);
  cursor: default;
}

.video-block {
  width: 100%;
  min-height: 200px;
  padding: 2px;
  border: 2px solid gray;
}

.header-bird1, .header-bird2 {
  height: 44%;
  position: absolute;
  filter: brightness(80%);
  top: 0;
}

@keyframes bird1anim {
  0% {
    left: -500px;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes bird2anim {
  50% {
    right: -500px;
  }
  100% {
    right: 100%;
  }
}

.header-bird1 {
  left: -500px;
  animation: bird1anim 10s ease infinite;
}

.header-bird2 {
  transform: scaleX(-1);
  right: -500px;
  animation: bird2anim 10s ease infinite;
  top: 10%;
  scale: 0.9;
  filter: brightness(70%);
}

.social-icon {
  border-radius: 100%;
  width: 50px;
  height: 50px;
  transition: filter 0.25s;
}

.social-icons {
  position: absolute;
  bottom: 15px;
  right: 15px;
  display: flex;
  gap: 10px;
}

.social-icon img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  box-shadow: 0 0 5px #000a;
  cursor: pointer;
}

.social-icon:hover {
  filter: brightness(80%);
}

#admin-panel {
  display: none;
}

.poster {
  width: 100%;
  max-width: 250px;
  box-shadow: 0 0 10px 0 #0005;
  border-radius: 25px;
}

a {
  text-decoration: none;
}

/* @media (min-width: 700px) { */
  /* .menu { */
    /* flex-wrap: wrap; */
    /* height: none; */
  /* } */
  /* .menu-button { */
    /* font-size: 30px; */
  /* } */
  /* .content { */
    /* width: 100%; */
    /* flex-wrap: wrap; */
  /* } */
/* } */
