/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
@import url("https://fonts.googleapis.com/css2?family=Righteous&display=swap");

:root {
  /* Define variables for box-shadow size based on viewport width (vw) and height (vh) */
  --shadow-blur: calc(10vw + 10vh);
  --shadow-spread: calc(2vw + 2vh);
}

body,
html {
  margin: 0;
  padding: 0;
  overflow: hidden;
  min-height: 100vh;
  background-color: black;
  width: 100%;
}

#background-image {
  background-image: url("../images/graalalone.png"); /* Update with your image filename */
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0px 1px var(--shadow-blur) var(--shadow-spread)
    rgba(0, 0, 0, 0.85) inset;
  -webkit-box-shadow: 0px 1px var(--shadow-blur) var(--shadow-spread)
    rgba(0, 0, 0, 0.85) inset;
  -moz-box-shadow: 0px 1px var(--shadow-blur) var(--shadow-spread)
    rgba(0, 0, 0, 0.85) inset;
}

#title {
  padding: 1em 0;
  /* Font options */
  text-align: center;
  font-family: "Righteous", sans-serif;
  text-shadow: 2px 2px 4px #000000;
  font-size: 5em;

  /* Chrome, Safari, Opera */
  -webkit-animation: rainbow 30s infinite;

  /* Internet Explorer */
  -ms-animation: rainbow 30s infinite;

  /* Standar Syntax */
  animation: rainbow 30s infinite;
}

/* Chrome, Safari, Opera */
@-webkit-keyframes rainbow {
  0% {
    color: orange;
  }
  10% {
    color: purple;
  }
  20% {
    color: red;
  }
  30% {
    color: CadetBlue;
  }
  40% {
    color: yellow;
  }
  50% {
    color: coral;
  }
  60% {
    color: rgb(110, 126, 55);
  }
  70% {
    color: cyan;
  }
  80% {
    color: DeepPink;
  }
  90% {
    color: DodgerBlue;
  }
  100% {
    color: orange;
  }
}

/* Internet Explorer */
@-ms-keyframes rainbow {
  0% {
    color: orange;
  }
  10% {
    color: purple;
  }
  20% {
    color: red;
  }
  30% {
    color: CadetBlue;
  }
  40% {
    color: yellow;
  }
  50% {
    color: coral;
  }
  60% {
    color: rgb(110, 126, 55);
  }
  70% {
    color: cyan;
  }
  80% {
    color: DeepPink;
  }
  90% {
    color: DodgerBlue;
  }
  100% {
    color: orange;
  }
}

/* Standar Syntax */
@keyframes rainbow {
  0% {
    color: orange;
  }
  10% {
    color: purple;
  }
  20% {
    color: red;
  }
  30% {
    color: CadetBlue;
  }
  40% {
    color: yellow;
  }
  50% {
    color: coral;
  }
  60% {
    color: rgb(110, 126, 55);
  }
  70% {
    color: cyan;
  }
  80% {
    color: DeepPink;
  }
  90% {
    color: DodgerBlue;
  }
  100% {
    color: orange;
  }
}
