/* Styles for all text and text animations*/
body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--black);
}

#mainContainer {
  text-align: center;
}

:is(h1, h2, h3, h4, h5, h6) {
  color: #2e2e02;
  margin: 10px 0 10px;
  font-weight: normal;
}

/* Style for LINKS */
a:link {
  /* unvisited */
  color: var(--darkazure);
}
a:hover {
  color: var(--azure);
}
a:visited {
  color: var(--purple);
}

.iM {
  background-color: white;
  display: none;
  font-weight: bold;
  font-style: italic;
  font-size: calc(1vw + 1vh + 20px);
  padding: 2px;
}

.slowBlink {
  animation-name: slowBlink;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-play-state: running;
}
@keyframes slowBlink {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.4;
  }
}

.fadeIn {
  animation: fade-in 0.6s ease;
  z-index: 0;
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.blurb {
  color: var(--grimazure);
  font-family: "Sen", sans-serif;
  animation: fade-downwards 0.5s ease;
  z-index: 0;
}
@keyframes fade-downwards {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

.subBlurb {
  color: var(--darkazure);
  margin-left: calc(20vw + 10px);
  margin-bottom: calc(1vh + 15px);
}

.whiteAccent {
  color: var(--lightblue);
}

.disableClick {
  cursor: default;
}

/* NAVIGATION */
#navigation ul {
  font-family: "Cousine", monospace;
  list-style-type: none;
  margin: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-inline-start: 10px; /* rewrite the default inline start */
  padding-inline-end: 10px;
  font-size: calc(0.5vw + 12px);
}
#navigation li {
  display: inline;
  line-height: 200%;
  padding: 0px 6px;
  margin-left: 0.2vw;
  margin-right: 0.2vw;
}
#navigation a {
  text-decoration: none;
}
#navigation span.material-symbols-outlined {
  position: relative;
  top: calc(-0.2vh + 3px); /* shift material icons down a little */
}

/* Resposive style for screens larger than 600px in resolution */
/* All desktop monitors and medium tablets fit into this range */
@media only screen and (min-width: 600px) {
  #navigation ul {
    font-size: calc(0.25vw + 14px);
  }
}

/* TITLE SCREEN */
#title {
  color: white;
}
#descriptor {
  margin-top: 26px;
  color: ghostwhite;
}
#descriptor ul {
  color: #cceeff;
  list-style-type: none;
  padding: 0px 12px 0px;
  font-size: calc(0.4vw + 10px);
}

#t1 {
  color: var(--lightblue);
  font-size: calc(2vw + 20px);
  margin-bottom: calc(0.5vh + 3px);
  font-family: "VT323", monospace;
}

#t2 {
  font-size: calc(0.2vw + 14px);
  padding: 5px;
}

#t3 {
  font-size: calc(0.2vw + 12px);
}

#startBut {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--gold);
  font-size: calc(0.75vw + 40px);
  background-color: transparent;
  font-family: "VT323", monospace;
}

@media only screen and (min-width: 600px) {
  #t1 {
    font-size: calc(1vw + 10px);
  }
  #t2 {
    font-size: calc(0.4vw + 24px);
  }
  #t3 {
    font-size: calc(0.4vw + 10px);
  }
}

/* Intro Screen */
#mainContent {
  font-family: Arial, Helvetica, sans-serif;
  text-align: left;
}

h1 {
  color: var(--darkazure);
}

/* FOOTER */
footer {
  color: var(--darkazure);
}
