html {
  font-family: "Inconsolata", sans-serif;
  color: #eeeeee;
}

body {
  width: 100vw;
  height: 100vh;
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  margin: auto;
  background-color: #000000;
  background-image: url("IMG/bettysgraphics-stars1.gif");
  background-origin: content-box;
  background-repeat: repeat;
}

/*CONTAINERS*/
#main-container {
  width: 75vw;
  max-width: 75vw;
  margin: auto;
  }

.main-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px;
  box-sizing: border-box;
  max-height: 858px;
  overflow-y: scroll;
  color: #eeeeee;
  background-color: #000000;
  border: 1px;
  border-color: #eeeeee;
  border-style: solid;
  }

.grid-item {
  width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  }

/*for static frame, add height: 80vh; to main-flex*/

.spacer80px {
  width: 100vw;
  height: 80px;
  }

footer {
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  }


/*MEDIA QUERIES*/
@media (max-width: 800px){
  .albumcard {
    flex-direction: column;
    text-align: center;
    }
}
@media screen and (max-width: 1000px) and (min-width: 801px) {
   .albumcard {
    flex-direction: column;
    }
  }
@media (min-width: 1001px){
   .albumcard {
    flex-direction: row;
    }
  }

.albumflex {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
  }

.albumcard {
  display: flex;
  align-items: center;
  width: 75%;
  gap: 20px;
  }

.albumcard img {
  object-fit: contain;
  max-width: 150px;
  }

/*TEXT*/

h1 {
  font-family: "Faculty Glyphic";
  font-size: 3em;
  text-align: center;
  }

h2 {
  font-family: "Faculty Glyphic";
  font-size: 2em;
  text-align: center;
  }

h3 {
  font-size: 1.5em;
  font-style: italic;
  margin: 8px 0;
  }

h4 {
  text-transform: uppercase;
  margin: 4px 0;
  }

.tinyhead {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05rem;
  background-color: #eeeeee;
  color: #111111;
  }

.tinytext {
  font-size: 12px;
  }

a {
  color: #eeeeee;
  }

footer p {
  font-size: 12px;
  }
