* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.page { /*this thru feature-3 create entire mobile layout with no MQs*/
  display: flex;
  flex-wrap: wrap; /*makes it very easy to implement tablet and desktop layouts*/
}

.section {
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

body a {
  font-family: "Roboto", "Calibri", sans-serif;
}

head {
  color: EEEEEE;
  justify-content: center;
}

title {
  color: EEEEEE;
  justify-content: center;
}

body {
  color: #414141; /*Dark gray*/
  justify-content: center;
}

ol {
  list-style-type: '⭐';
}

ol {
  text-align: left;
  padding: 35px;
  border: 1px solid #000000;
  margin: 10px 10px 10px 10px;
}

ul {
  text-align: right;
  padding: 20px;
  list-style-type: none;
  margin: 10px 10px 10px 10px;
}

p {
  text-align: center;
  font-family: "Roboto", "Calibri", sans-serif;
  margin: 20px 20px 20px 20px;
  max-width: 95%;
}

body {
  text-align: center;
  font-family: "Roboto", "Calibri", sans-serif;
}

h1 {
  font-family: "Roboto", "Calibri", sans-serif;
  margin: 10px 0 10x 0;
  align-content: center;
}

h2 {
  margin-bottom: 10px;
}

h3 {
  font-size: 20px;
  font-family: "Candara", "Calibri", sans-serif;
  margin-top: 25px;
}

h4 {
  align-content: center;
}

.illustration img {
  width: 100%;
  display: block;
  justify-content: center;
}

.illustration a {
  padding: 0;
  margin: 0;
}



ul li {
  float: left;
}



.gallery {
    max-width: 205px;
    height: 100%;
    justify-content: left;
    align-items: left;
    position: fixed;
    left: 0;
    top: 0;
    background-color: #EEEEEE;
    margin: 0;
    border-right: 4px solid #C0C0C0;
    border-radius: 1px;
    box-shadow: 8.0px 16.0px 16.0px hsl(0deg 0% 0% / 0.25);
  }
  
  .gallery img {
    height: 100%;
    width: 200px;
    border: 4px solid #C0C0C0;
    border-radius: 1px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: left;
    float:left;
  }
  
  .gallery img:hover {
    transform: scale(1.05, 1.05);
    transition: .5s;
  }
  
  .content {
    margin-left: 205px;
    display: right;
    position: right;
    justify-content: right;
    text-align: right;
    max-width: 98%;
  }
  
  .item {
    height: 9%;
    width: 100%;
    display: inline-block;
    text-align: right;
    margin-bottom: 5px;
  }
  
  .item img {
    position: left;
    height: 100%;
    width: 50%
    text-align: left;
  }
  
  .item h4 {
    width: 65%;
    text-align: left;
    margin: 0;
  }
  
  .item h4 a {
    width: 100%;
    text-align: right;
    margin: 0;
  }

  .item a {
    padding: 0;
  }

  .disappearing {
    height: 9%;
    width: 100%;
    display: inline-block;
    text-align: right;
    margin-bottom: 5px;
  }
  
  .disappearing img {
    position: left;
    height: 100%;
    width: 50%
    text-align: left;
  }
  
  .disappearing h4 {
    width: 65%;
    text-align: left;
    margin: 0;
  }
  
  .disappearing h4 a {
    width: 100%;
    text-align: right;
    margin: 0;
  }

  .blog-subscribe {
  text-align: center;
  justify-content: center;
  align-items: center;
  max-width: 80%;
  margin-left: 205px;
}

.blog-subscribe img {
  border: 3px solid #414141;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 250px;

}

.blog-subscribe a {
  padding: 0;
}

/*Mobile Styles*/
@media only screen and (max-width: 425px) {
  body {
    background-color: #EEEEEE;
  }

  .content {
    margin: 0;
  }

  .navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    margin: auto;
  }

  .navbar ul {
    margin: 0px 0px 0px 0px;
    padding: 0px;
  }

  .navbar ul li {
    list-style-type: none;
    width: 70px;
    text-align: center;
  }

  p {
    max-width: 95%;
  }

  .gallery {
  max-width: 100%;
  position: sticky;
  left: 0;
  top: 0;
  background-color: #EEEEEE;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  border: 0;
  }

  .gallery img {
    max-width: 100%;
    border: 4px solid #C0C0C0;
    border-radius: 1px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: left;
}

.item {
  max-width: 33%;
  max-height: 50px;
}

.item img {
  width: 100%;
  margin: 0;
  padding: 0;
}

.disappearing {
    display: none;
  }
  
  .disappearing img {
    max-width: 100%;
    margin: 0;
    padding: 0;
  }

  .blog-subscribe {
    margin: 0;
    max-width: 100%;
  }

  .blog-subscribe img {
    width: 350px;
  }
}

/*Tablet Styles*/
@media only screen and (min-width: 426px) and (max-width: 960px) {
  body {
    background-color: #EEEEEE;
  }

  .navbar ul li {
    list-style-type: none;
    width: 90px;
    text-align: center;
  }

  .gallery {
    max-width: 100%;
    position: sticky;
    left: 0;
    top: 0;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    background-color: #EEEEEE;
    }
  
    .gallery img {
    width: 100%;
    border: 1px solid #C0C0C0;
    border-radius: 1px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: left;
  }
  
  .item {
  width: 20%;
  margin: 0;
}

.item img {
  width: 100%;
  margin: 0;
  padding: 0;
}


.disappearing {
  width: 20%;
  margin: 0;
}

.disappearing img {
  width: 100%;
  margin: 0;
  padding: 0;
}
  
  .content {
    max-width: 95%;
    justify-content: center;
    text-align: center;
    margin-left: 0;
  }

  .blog-subscribe {
    margin: 0;
    max-width: 100%;
    text-align: center;
    padding: 0;
  }
}

/*Desktop Styles*/
@media only screen and (min-width: 961px) {
  body {
    background-color: #EEEEEE;
  }
}
