@font-face {
  font-family: 'JetBrainsMono'; /* A name to be used later */
  src: url('fonts/JetBrainsMono-Bold.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap; /* Optimizes font loading behavior */
}

@font-face {
  font-family: 'Comic Sans'; /* A name to be used later */
  src: url('fonts/comic-sans.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap; /* Optimizes font loading behavior */
}

@font-face {
  font-family: 'Deltatextbox'; /* A name to be used later */
  src: url('fonts/undertalefont.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap; /* Optimizes font loading behavior */
}

@font-face {
  font-family: 'Deltatextlogo'; /* A name to be used later */
  src: url('fonts/deltarunelogofont.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap; /* Optimizes font loading behavior */
}

h1 {
  font-family: 'Deltatextbox', serif;
  font-size: 40px;
  color: darkcyan;
  text-align: center;
  text-anchor: middle;
  padding-top: 70px;
  padding-bottom: 40px;
  
  -webkit-text-stroke: 2px orangered;
}


p {
  font-family: 'Comic Sans', serif;
  font-size: 30px;
  color: black;
  text-align: center;
  text-anchor: middle;
  text-shadow:
    -1px -1px 0 white,
     1px -1px 0 white,
    -1px  1px 0 white,
     1px  1px 0 white;
}

span {
  font-family: 'Comic Sans', serif;
  font-size: 30px;
  color: black;
  text-align: center;
  text-anchor: middle;
  text-shadow:
    -1px -1px 0 white,
     1px -1px 0 white,
    -1px  1px 0 white,
     1px  1px 0 white;
}

a {
  font-family: 'Deltatextbox', serif;
  font-size: 19px;
  color: blue;
  text-align: center;
  text-anchor: middle;
  margin-right: 50px;
}

body {
  background-color: black;
  background-image: url("images/starbg.gif");
  background-position: center;   /* centers the image */
}

.marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 15s linear infinite;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}


.big-link {
  text-align: center;
  text-anchor: middle;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    overflow-anchor: 2;
    background: darkcyan;
    z-index: 1000;
}

.music-row {
  display: flex;
  align-items: center;   /* vertical alignment */
  text-align: center;
  gap: 20px;
}

.music-text {
  margin: 0;
  font-size: 20px;
  white-space: normal;
}

.music-player {
  width: 50%;
  height: 300px;
}

.word-rotator::after {
  font-size: 225px;
  content: "Music";
  animation: rotateWords 3s infinite;
}

@keyframes rotateWords {
  0%, 33% {
    content: "i make music";
  }
  34%, 66% {
    content: "i make art";
  }
  67%, 100% {
    content: "i make games";
  }
}


