/* 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." */

/* SITE LAYOUT */


body {
  background-color: black;
  color: #ac3232;
  font-family: Courier;
  font-size:16px;
}


/* navigation link when a link is hovered over */

a {color:#b207cc;text-decoration:underline;}

a:hover {
  color: hotpink;
  text-decoration: underline;
}




h1,
h2,
h3 {
  color: #dd2488;
}

h1 {
  font-size: 25px;
}

strong {color:#ac3232}

mark {
  background-color: #2b062d;
  color: #dd2488;
}

.favoriteScroll {
  border: 1px solid black;
  width: 750px;
  height: 300px;
  position: relative;
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
}

.spoiler {
  background-color:#ac3232;
  color:#ac3232;
  display:inline-block;
  position:relative;
}

.spoiler:hover {
  background-color:black;
  color:#ac3232;
  display:inline-block;
  position:relative;
}

.menuImageLayout{    
    width: 33%;
    display: flex;
    flex-direction:row;
    justify-content:space-around;
    list-style-type:none}  
.menuImageLayout img{size:66%}


/* BELOW THIS POINT IS MEDIA QUERY */

/* so you wanna change the width of your page? 
by default, the container width is 900px.
in order to keep things responsive, take your new height,
and then subtrack it by 100. use this new number as the 
"max-width" value below
*/

@media only screen and (max-width: 800px) {
  #flex {
      flex-wrap: wrap;
  }

}
  
  