* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #000;
}

body {
  font-family: courier, serif;
  max-width: 100vw;
  overflow-x: hidden;
  background: #fff;
}

a {
  text-decoration: none;
  color: black;
}

#header, #footer {
  position: fixed;
  width: 100%;
}

#header {
  z-index: 999;
}

#footer {
  bottom: 0;
}

.marquee {
  display: flex;
  align-items: center;
  height: 10vh;
  overflow: hidden;
}

.marquee > div.container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  position: absolute;
}

#header > div.container.first {
  animation: firstMarqueeContainer 15s linear infinite;
}

#header > div.container.second {
  animation: secondMarqueeContainer 15s linear infinite;
}

#footer > div.container.first {
  animation: firstMarqueeContainer 15s linear infinite reverse;
}

#footer > div.container.second {
  animation: secondMarqueeContainer 15s linear infinite reverse;
}

.marquee > div.container img {
  height: auto;
  width: 10%;
  object-fit: contain;
}

@keyframes firstMarqueeContainer {
  0% {
    left: 0;
  }
  to {
    left: -100%;
  }
}

@keyframes secondMarqueeContainer {
    0% {
        left: 100%;
    }
    to {
        left: 0;
    }
}

@media screen and (max-width: 991px) {
  .marquee > div.container img {
    height: auto;
    width: 25%;
    object-fit: contain;
  }
}

#wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#wrapper main {
  display: flex;
  flex-grow: 1;
  padding: 0 2rem;
}

#home {
  width: 50%;
  margin: auto;
}

#content {
  padding: 10vh 0;
  width: 50%;
  margin: 0 auto;
}

@media screen and (max-width: 991px) {
  #home, #content {
    width: 100%;
  }
}

#youtube {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 70%;
  margin-bottom: 2rem;
}

#youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

nav ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  grid-gap: 2rem;
  gap: 2rem;
}
nav li {
  transition: all 0.2s ease-in-out;
}
ul.style-none {
  list-style: none;
  padding: none;
}

#links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  grid-gap: 2rem;
  gap: 2rem;
}

a:hover {
  text-decoration: underline;
}

.event {
  border-bottom: 1px solid;
  text-align: left;
  padding: 1rem;
}
