@font-face {
  font-family: 'Futura Condensed Bold';
  src: url('../fonts/Futura\ BdCn\ BT\ Bold.ttf');
}
body {
  font-family: 'Futura Condensed Bold', Arial, Helvetica, sans-serif;
  background-color: black;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100dvh;
}
main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
main p {
  font-size: 2rem;
  text-align: center;
}
footer {
  display: flex;
  justify-content: center;
  padding: 1rem 0;
}

#logo {
  width: 100px;
}
#links {
  margin-top: 2rem;
  margin: 1.5rem 1rem 0 1rem;
}
#links a {
  display: block;
  color: white;
  font-size: 1.5rem;
  text-align: center;
  padding: 0.5rem 1rem;
  margin-bottom: 0.25rem;
}
#links a:hover {
  background-color: white;
  color: black;
  text-align: center;
}
.youtube-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  max-width: 540px;
  aspect-ratio: 16 / 9;
}
.youtube-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0 1rem;
}