@import url('https://fonts.googleapis.com/css2?family=Bungee+Inline&family=Londrina+Outline&family=Monofett&family=Monoton&family=Train+One&family=Zilla+Slab+Highlight:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bungee&display=swap');

 body {
   color : white;
   font-family: 'Bungee', cursive;
   text-align: center;
 }

h1 {
    color: white;
    font-family: 'Bungee Inline', cursive;
    font-size: 150px;
    line-height: 1em;
    margin: 0;
    display: inline-block;
    transition: text-shadow 1s;
}
h1:hover {
    transition: text-shadow 500ms;
    text-shadow: 7px 7px black, -7px -7px black, -7px 7px black, 7px -7px black;
}

h3 {
    color: white;
    font-size: 25px;
    margin-top: -10px;
    margin-bottom: 30px;
    background-color:none;
    font-family: 'Train One';
    line-height: 1px;
    text-shadow: 2px 2px black, -2px -2px black, -2px 2px black, 2px -2px black;
}

h4 {
    color: white;
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 30px;
    background-color:none;
    font-family: 'Bungee Inline';
    line-height: 1px;
    text-shadow: 2px 2px black, -2px -2px black, -2px 2px black, 2px -2px black
}

a{
    color: black;
    /* background-color: white; */
    font-family: 'Zilla Slab Highlight';
    font-size: 40px;
    font-weight: bold;
    margin: 10px 1px;
    transition: color 200ms;
}

a:visited {
    color: black;
}

a:hover {
    text-shadow: : black;
    color: white;
    transition: color 400ms;
}

header {
  text-align: center;
}

nav {
  text-align: center;
  /* border: 5px dashed black; */
  /* border-top-color: lightpink; */
  /* border-top-left-radius: 15px;
  border-bottom-right-radius: 15px; */
  /* border-bottom-color: salmon;
  border-bottom-style: dotted;
  border-left-color: lightsalmon; */
  margin: 0 auto;
}

li {
    display: list-item;
    text-align: center;
    display: inline;
    padding: 0;
    margin: auto;
}

ul {
    list-style-type: none;
    display: inline;
    padding: 10px;
    padding-top: 28px;
    width: 80%;
    margin: auto;
}

.page-grid {
    display: grid;
    grid-template-columns:2fr 2fr 2fr;
    grid-auto-rows: 8em;
}

.navcontainer {
    display: grid;
    grid-template-columns:2fr 1fr 1fr 1fr 2fr;
    grid-auto-rows: 4em;
    grid-gap: 5px;
    justify-content: center;
}

.reload {
  position:absolute;
              bottom:0;
              right:0;
  transform: rotate(-35deg);
}

h5 {
    color: white;
    font-size: 20px;
    margin-right: 0;
    margin-bottom: -10px;
    text-decoration: none;
    background-color:none;
    font-family: 'Bungee Inline';
    line-height: 1px;
    text-shadow: 2px 2px black, -2px -2px black, -2px 2px black, 2px -2px black
}
#reload {
    text-decoration: none;
}
h6 {
    color: white;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 100px;
    text-decoration: none;
    background-color:none;
    font-family: 'Bungee Inline';
    line-height: 1px;
    text-shadow: 2px 2px black, -2px -2px black, -2px 2px black, 2px -2px black
}

#navdiv {
    margin: auto;
}
#one {
    grid-column: 1 / -1;
}

#background {
 text-align: justify;
 position: fixed; top: -150%; left: -50%; width: 300%;
 z-index: -3;
 transform: rotate(-15deg);
 line-height: 1em;
 color : rgba(255, 255, 255, 0.5);
}


@media all and (max-width:1080px) {
  header {
    text-align: center;
  }
  h3{
      min-width: 400px;
  }
  h1{
    text-align: center;
  }
  text-align: left;
  a{
      display: block;
      margin: 0 auto;
      width: 100%;
  }
  .navcontainer {
      display: grid;
      grid-template-columns:1fr;
      grid-auto-rows: 3em;
  }
  .page-grid {
      display: grid;
      grid-template-columns:2fr 1fr 2fr;
      grid-auto-rows: 20em;
  }
  }
