body {
  font-family: 'Courier New', Courier, monospace;
  background-image: url(../img/bg2023.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.logo {
  display: block;
  margin: 4rem auto;
  max-width: 100%;
  fill: #fff;
  filter: drop-shadow(0 0 3px #000) drop-shadow(0 0 3px #000);
}

img {
  max-width: 100%;
  height: auto;
}

.video {
  width: 100%;
  height: 57vw;
  max-height: 562px;
}

.video-thumbnail-list {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: space-evenly;
  gap: 0.5rem;
}

.video-thumbnail-list li a:hover img {
  box-shadow: 0px 0px 10px 4px #74fff8;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  margin: 10px 0;
  border: 2px solid #74fff8;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 1.25em;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.25s ease-in-out;
}

.button:hover {
  background-color: #74fff8;
  color: #000;
}

@media screen and (max-width: 430px) {
  .logo {
    width: 300px;
    margin: 2rem auto;
  }
}

.container {
  text-align: center;
  width: calc(100% - 50px);
  max-width: 900px;
  padding: 2rem 20px;
  margin: 0 auto;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(30px);
  box-shadow: 0px 0px 10px 2px #74fff8;
  border-radius: 2px;
}

h1, h2 {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  text-transform: uppercase;
  font-size: 2em;
  font-weight: 100;
  letter-spacing: -1px;
}

h2 {
  font-size: 1.75em;
  margin-top: 4rem;
}

p {
  text-align: justify;
}

ul, ol {
  text-align: left;
}

a {
  color: #74fff8;
}

a:hover {
  color: #fff;
}

.cta-container {
  text-align: center;
  margin: 3rem 0;
}