body {
  background-color: #333;
  color: #FFD966;
  font-size: 1.5em;
  font-family: Heebo, sans-serif;
}

body>div {
  margin: 40px 10px;
}

#title {
  font-family: PermanentMarker, sans-serif;
  font-size: 3em;
  color: #FFD966;
  text-align: center;
  text-shadow: 3px 3px 3px black, -1px -1px 1px #00000052;
}

.video-container {
  text-align: center;
}

.video-container video {
  max-width: 50%;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.456);
}

.video-container span {
  display: block;
  padding: 10px;
}

#apple {
  text-align: center;
  position: relative;
}

#apple img {
  width: 200px;
}

#apple span {
  display: block;
  padding: 10px 10px;
}

.pulse {
  animation-name: initial-pulse, infinite-pulse;
  animation-duration: 2s, 2s;
  animation-delay: 0s, 2s;
  animation-iteration-count: 1, infinite;
  animation-timing-function: ease-in-out;
}

@keyframes initial-pulse {
  50% {
    transform: scale(2);
  }
}

@keyframes infinite-pulse {
  50% {
    transform: scale(1.1);
  }
}

#footer {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1.5em;
  position: relative;
  height: 10vh;
  font-family: Heebo, sans-serif;
  font-size: 2.75vh;
  text-align: center;
}

.whitelink,
.whitelink:active,
.whitelink:visited {
  color: white;
  text-decoration: none;
}

.whitelink:hover {
  text-decoration: underline;
  color: white;
}

@font-face {
  font-family: PermanentMarker;
  src: url(../fonts/PermanentMarker-Regular.ttf);
}