/* 

   +-----------------------------------+
   | B A S I C   I N F O R M A T I O N |
   +-----------------------------------+

	Website designed by: Robbie Thomas

*/


body {
	background-color: black;
}

/*
font-family: 'Press Start 2P', cursive;
font-family: 'Share Tech Mono', monospace;
font-family: 'Cute Font', cursive;
font-family: 'Iceland', cursive;

These are the fonts we are going to use!
*/

header {
	font-family: 'Share Tech Mono', monospace;
	color: red;
}

h2 {
	font-family: 'Iceland', cursive;
	color: yellow;
}


nav {
  text-align: center;
  font-size: 32px;
  color: yellow;
  font-weight: bold;
}

nav a {
  color: yellow;
  text-decoration: none;
  transition: 1.5s ease;
  border-bottom: 1px 1px 1px 1px solid #ebecec;
}

nav a:hover {
  color: black;
  transition: 1.5s ease;

}

nav ul {
  list-style: none;
  margin: 10px 10px;
  padding: 0px;
}

nav li {
  width: 25%;
  display: inline-block;
  margin: 10px 10px;
  vertical-align: middle;
  border: 2px solid black;
  border-radius: 25px;
  background-color: blue;
}

nav li:hover {
  background-color: red;
  transition: 1.5s ease;
}



/* 

   +-------------------------+
   | M A I N   S E C T I O N |
   +-------------------------+

*/


section {
  border: 25px;
  max-width: 1240px;
  font-color: #000000;
}

.wrapper {
  font-family: 'Press Start 2P', cursive;
  max-width: 1240px;
  border: 2px solid red;
  border-radius: 25px;
  background-color: #D6D6C2;
  margin: 5px auto;
  padding-left: 15px;
  padding-right: 15px;
}

a {
  text-decoration: none;
}

a:link {
  color: #60b1fc;
}

a:visited {
  color: #60b1fc;
}

a:hover {
  color: red;
  transition: 1.5s ease;


/*

   +---------------------------+
   | M E D I A   Q U E R I E S |
   +---------------------------+

/*************************
MEDIA Q's
*************************/

@media (min-width: 320px) and (max-width: 819px) {

  body {
    font-size: 12px;
  }

  h1 {
    font-size: 24px;
  }

  nav {
    text-align: center;
  }

  nav li {
    margin: 10px;
    width: 100%;
    height: 40px;
    font-size: 24px;
    display: block;
  }

img {
  width: 80%;
  height: 200px;
}

.linkone img {
  width: 200px;
  height: 250px;
}

.linkone  {
  width: 80%;
  height: 325px;

}

section {
    max-width: 568px;
}
  
.wrapper {
  font-family: 'Press Start 2P', cursive;
  max-width: 568px;
  border: 2px solid red;
  border-radius: 25px;
  background-color: #D6D6C2;
  margin: 5px auto;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 10px;
}

@media only screen and (max-width: 820px) {

   body {
    font-size: 28px;
  }

  img {
    width: 100%;
  }

    h1 {
    font-size: 20px;
}

  h2 {
    font-size: 16px;
  }

  nav {
    font-size: 12px;
  }

  nav li {
    display: block;
    margin: 10px 10px;
    width: 100%;
    height: 28px;
  }


}



