@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@300&display=swap');

@font-face {
  font-family: 'IBM Plex Mono', monospace;
  src: url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@300&display=swap");
}


body {
  background-color: #333;
  color: white;
   background-image: url("https://i.imgur.com/Dbg7tEf.png");
  font-family: IBM Plex Mono;
  font-size: 15px;
}

.welcome {
  color: #333;
  font-weight: 900;
text-align: center;
}

header {
  width: 100%;
  background-color: #333;
  padding: 5px;
  text-align: center;
  border: 3px lawngreen solid;
  position: fixed;
  top: 0px;
  left: 0px;
      box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

header h1 {
  margin-bottom: 5px;
  margin-top: 0px;
  padding: 0px;
}

header a {
  color: yellow;
}

header a:hover {
  color:pink;
}

nav a {
  margin-left: 10px;
  text-align: right;
}

nav a {
  margin-left: 10px;
  text-align: right;
}

.spacer {
  height: 90px;
}

img {
 width: 200px;
}

.classValues {
  display: flex;
  flex-wrap: wrap;
}

.classValues div {
  width: 200px;
  height: auto;
  border: lawngreen 3px solid;
  margin: 20px;
  padding: 10px;
  flex-grow: 84;
  align-items: center;
  justify-content: center;
  background-color: #333;
   box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.classValues div:hover {
  background-image: linear-gradient(to right, pink , lawngreen);
  color: #333;
}


.who {
   display: flex;
  flex-wrap: wrap;
}

.who section {
  width: 200px;
  height: auto;
  border: hotpink 3px solid;
  margin: 20px;
  padding: 20px;
  flex-grow: 4;
  background-color: #333;
   box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.pageName {
  text-align: center;
  background-color: #333;
  font-weight: 1000;
  border: orange 3px solid;
  padding: 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.pageName:hover {

}

.image-block{
  display:flex;
  flex-wrap: wrap;
  width: 100%;
}

.image-block h2 {
  text-align:center;
}

.image-block {
  width: 100%;
background-color: #333;
  padding: 20px;
  border: 10px solid black;
}

.image-block img {
  text-align: center;
  align-items: center;
  padding: 10px;
  flex-grow: 4;
}


.selected {
  color: pink;
  border-bottom: solid pink 1px;
}

.who section:hover {
  background-image: linear-gradient(to right, pink , lawngreen);
  color: #333;
}




/* responsive header */
@media only screen and (min-width: 950px) {
  
  .mobilenav {
    display: none;
  }
  
  .desknav {
    display: inline-block;
  }
  
  .icon {
    display: none;
  }
  
}


@media only screen and (max-width: 950px) {

    .mobilenav {
    display:
      none;
  }
  
   .desknav {
    display: inline-block;
  }
  
  header h1 {
    font-size: 20px;
  }
  
  .spacer {
    height:80px;
  }
  
  .icon {
    display: none;
  }
}

@media only screen and (max-width: 650px) {

    .desknav {
    display:
      none;
  }
  
  .mobilenav {
    display: inline-block;
  }
  
  header {
    display: block;
  }
  header h1 {
    font-size: 16px;
  }
  
  .spacer{
    height:70px;
  }
  
    .icon {
    display: none;
  }
  
}

@media only screen and (max-width: 498px) {

    .desknav {
    display:
      none;
  }
  
    .mobilenav {
    display:block;
  }
  
  .spacer {
    height: 50px;
  }
  
  header h1 {
    text-align:center;
    font-size: 15px;
    display: block;  
  }
  
  nav a {
    font-size: 30px;
    display: block;
  }

   /* Style the navigation menu */
.topnav {
  overflow: hidden;
  position: relative;
}

/* Hide the links inside the navigation menu (except for logo/home) */
.topnav #myLinks {
  display: none;
}

/* Style navigation menu links */
.topnav a {
  text-align: right;
  padding: 14px 16px;
  text-decoration: none;
  display: block;
  font-size: 15px;
}

/* Style the hamburger menu */
.topnav a.icon {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 20px;
}

/* Add a grey background color on mouse-over */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Style the active link (or home/logo) */
.active {
  color: white;
} 
  
}

@media only screen and (max-width: 350px) {
  
  .desknav {
    display:
      none;
  }
  
      .mobilenav {
    display:block;
  }
  
  header {
    text-align: left;
  }
  
  header h1 {
    text-align: center;
    font-size: 15px;
  }
  
  .topnav a {
  text-align: right;
  padding: 14px 16px;
  text-decoration: none;
  display: block;
}
  
}