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

/* background, text colour, padding, the text alignment, fonts */
body {
  background-color: floralwhite;
  color: black;
  padding-top: 25px;
  text-align: center;
  font-family: 'Courier New', Courier, monospace;
  font-size: 20px;
}

article {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-left: 100px;
  margin-right: 100px;
}

p {
  font-family: courier;
  max-width: 600px;
  padding: 0;
  display: flex;
}

/* font size for the header */
h1 {
  font-size: 50px;
}

@media screen and (min-width: 900px) {
  nav {
    position: fixed;
    top: 90%;
	  left: 50%;
	  transform: translate(-50%, -50%);
  }
}

@media screen and (max-width: 900px) and (min-width: 700px) {
  nav {
    position: fixed;
    top: 50%;
	  left: 16%;
	  transform: translate(-50%, -50%);
  }
}

@media screen and (max-width: 700px) and (min-width: 575px) {
  nav {
    position: fixed;
    top: 50%;
	  left: 20%;
	  transform: translate(-50%, -50%);
  }
}

@media screen and (max-width: 575px) {
  nav {
    position: fixed;
    top: 50%;
	  left: 22%;
	  transform: translate(-50%, -50%);
  }
}

ul.menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: papayawhip;
  display: flex;
  border: 5px solid darksalmon;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 900px) {
  ul.menu {
    min-width: 815px;
    height: 60px;
  }
}

@media screen and (max-width: 900px) {
  ul.menu {
    flex-wrap: wrap;
    flex-direction: column;
    height: 90vh;
    width: 190px;
  }
}

ul.menu li{
  text-align: center;
  flex-grow: 1;
  flex-shrink: 0;
}

@media screen and (max-width: 900px) {
  ul.menu li {
    flex-shrink: 1;
    flex-grow: 1;
  }
}

ul.menu li a {
  color: black;
  margin: auto;
  padding: auto;
  text-decoration: none;
}

ul.menu li a:hover {
  background-color: peachpuff;
}

button.boopmenu {
  color:black;
  background-color: papayawhip;
  border: 3px solid darksalmon;
  margin-bottom: 5px;
}

button.boopmenu:hover {
  background-color: peachpuff;
}

ul.real {
  list-style-type: square;
  padding: 0;
}

div.fanlist {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
}