* {
  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;
}

.header {
  background-color: #0B5345;
  color: #FCF3CF;
  
}

.content {
}

h1 {
  margin-bottom: 10px;
}

body {
  color: #0B5345;
}

head {
  background-color: #0B5345;
}

h1 {
  font-family: "Roboto", sans-serif;
  padding-top: 50px;
}

p {
  text-align: center;
  font-family: "Roboto", "Calibri", sans-serif;
  margin: 15px 15px 15px 15px;
  max-width: 60%;
}

h2 a {
  font-family: "Candara", "Calibri", sans-serif;
  color: #3F704d;
}

.illustration img {
  width: 100%;
  box-shadow: 8.0px 16.0px 16.0px hsl(0deg 0% 0% / 0.25);
  border-radius: 8px;
}

.form {
  margin-left: 205px;
  color: #0B5345;
  box-shadow: none;
}

.blog-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  flex-direction: row;
}

.blog {
  max-width: 475px;
  padding-bottom: 40px;
}

.blog img {
  width: 375px;
  border: 1px solid #EEEEEE;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.blog-subscribe {
  margin-left: 20%;
  text-align: center;
  padding-top: 40px;
}

.blog-subscribe img {
  border: 3px solid #414141;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 250px;

}



p {
  text-align: center;
  font-family: "Roboto", "Calibri", sans-serif;
  margin: 15px 15px 15px 15px;
  max-width: 98%;

}

.form-row label {
  width: 350px;
  text-align: center;
  justify-content: center;
}

.gallery {
  max-width: 205px;
  height: 100%;
  justify-content: left;
  align-items: left;
  position: fixed;
  left: 0;
  top: 0;
  background-color: #0B5345;
  margin: 0;
  border-right: 4px solid #C0C0C0;
  border-radius: 1px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.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;
}

.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;
  }

  .stars-ol {
    align-items: center;
    justify-content: left;
    text-align: left;
    font-family: "Roboto", "Calibri", sans-serif;
    list-style-type: '⭐';
    margin: 15px 15px 15px 15px;
    padding: 5px;
    max-width: 850px;
  }

  .abyss {
    flex-grow: 1;
    position: left;
    height: 360px;
  }


  .stats {
    display: flex;
    flex-direction: row;
    height: 360px;
    overflow: none;
  }

  .stat-tile {
    height: 360px;
    width: 360px;
    position: right;
    background-color: #000000;

  }

  .abyss p {
    text-align: center;
    font-family: "Helvetica", "Calibri", sans-serif;
    font-size: 20px;
    color: #cb6ce6;
    padding-left: 205px;
  }

  .top-p {
    padding-top: 100px;
  }

  .footer {
  margin-left: 205px;
}

  .footer p {
    color: #0B5345;
    font-family: "Roboto", "Calibri", sans-serif;
    font-size: 18px;
  }

/*Mobile Styles*/
@media only screen and (max-width: 425px) {
  body {
  }

  ul {
    align-items: left;
    justify-content: left;
    font-family: "Candara", "Calibri", -sans-serif;
    list-style-type: none;
    margin: 15px 15px 15px 15px;
    padding: 5px;
    max-width: 350px;
  }

  .gallery {
  max-width: 100%;
  position: sticky;
  left: 0;
  top: 0;
  background-color: #0B5345;
  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 {
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.disappearing {
    display: none;
  }
  
  .disappearing img {
    max-width: 100%;
    margin: 0;
    padding: 0;
  }

.content {
  max-width: 95%;
  justify-content: center;
  text-align: center;
  margin-left: 0;
}

.blog-container {
  flex-direction: column;
  text-align: center;
}

.blog img {
  width: 350px;
  max-width: 90%;
}

.blog-subscribe {
  margin: 0;
  max-width: 100%;
  display: none;
}

.blog-subscribe img {
  width: 200px;
}

.form {
  margin-left: 0;
  color: #FCF3CF;
}

.content {
  background-color: #0B5345;
  color: #FCF3CF;
  width: 100%;
  max-width: 100%;
  box-shadow: none;
}

.footer {
  margin-left: 0;
}

.footer p {
  color: #FCF3CF;
}

body {
  width: 100%;
  background-color: #0B5345;
}

.blog-subscribe{
  background-color: #0B5345;
  }

  .stars-ol {
    align-items: center;
    justify-content: left;
    font-family: "Roboto", "Calibri", sans-serif;
    list-style-type: '⭐';
    margin: 15px 15px 15px 15px;
    padding: 5px;
    max-width: 350px;
  }

  .stats {
    flex-direction: column;
    height: 375px;
  }

  .abyss {
    display: none;
    height: 0;
  }

  .abyss2 {
    width: 100%;
  }

  .stat-tile {
    width: 100%;
    background-color: #000000;
  }

  .abyss2 p {
    text-align: center;
    font-family: "Helvetica", "Calibri", sans-serif;
    font-size: 20px;
    color: #cb6ce6;
  }

  .stat-tile {
    width: 100%;
    text-align: center;
  }

  .abyss-space {
    display: none;
  }
}

@media only screen and (min-width: 426px) and (max-width: 550px) {
  body {

  }

  .gallery {
  max-width: 100%;
  position: sticky;
  left: 0;
  top: 0;
  background-color: #0B5345;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  }

  .gallery img {
  width: 100%;
  border: 4px solid #C0C0C0;
  border-radius: 1px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: left;
  margin: 0;
  padding: 0;
}

.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: 100%;
  justify-content: center;
  text-align: center;
  margin-left: 0;
}

.blog-subscribe {
  margin: 0;
  max-width: 100%;
  display: none;
}

h1 {
  max-width: 90%;
  align-items: center;
}

header {
  text-align: center;
}

p {

}

.form {
  margin-left: 0;
  color: #FCF3CF;
}

.content {
  background-color: #0B5345;
  color: #FCF3CF;
  width: 100%;
  max-width: 100%;
}

.footer {
  margin-left: 0;
}

.footer p {
  color: #FCF3CF;
}

body {
  width: 100%;
  background-color: #0B5345;
}

.blog-subscribe{
  background-color: #0B5345;
  }


.stars-ol {
    align-items: center;
    justify-content: left;
    align-text: left;
    font-family: "Roboto", "Calibri", sans-serif;
    list-style-type: '⭐';
    margin: 15px 15px 15px 15px;
    padding: 5px;
    max-width: 650px;
  }

  .abyss {
    flex-grow: 1;
  }

  .abyss p {
    padding-left: 0;
    font-size: 14px;
    padding-top: 15px;
  }

  .stat-tile {
    width: 270px;
  }

  .stat-tile img {
    width: 270px;
    padding-top: 45px;
  }

  .abyss2 {
    display: none;
  }

  .abyss-space {
    display: none;
  }

  .top p {
    padding-top: 0;
  }
}

@media only screen and (min-width: 551px) and (max-width: 650px) {
  body {

  }

  .gallery {
  max-width: 100%;
  position: sticky;
  left: 0;
  top: 0;
  background-color: #0B5345;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  }

  .gallery img {
  width: 100%;
  border: 4px solid #C0C0C0;
  border-radius: 1px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: left;
  margin: 0;
  padding: 0;
}

.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: 100%;
  justify-content: center;
  text-align: center;
  margin-left: 0;
}

.blog-subscribe {
  margin: 0;
  max-width: 100%;
  display: none;
}

h1 {
  max-width: 90%;
  align-items: center;
}

header {
  text-align: center;
}

p {

}

.form {
  margin-left: 0;
  color: #FCF3CF;
}

.content {
  background-color: #0B5345;
  color: #FCF3CF;
  width: 100%;
  max-width: 100%;
}

.footer {
  margin-left: 0;
}

.footer p {
  color: #FCF3CF;
}

body {
  width: 100%;
  background-color: #0B5345;
}

.blog-subscribe{
  background-color: #0B5345;
  }


.stars-ol {
    align-items: center;
    justify-content: left;
    align-text: left;
    font-family: "Roboto", "Calibri", sans-serif;
    list-style-type: '⭐';
    margin: 15px 15px 15px 15px;
    padding: 5px;
    max-width: 650px;
  }

  .abyss {
    flex-grow: 1;
  }

  .abyss p {
    padding-left: 0;
    font-size: 14px;
    padding-top: 100px;
  }

  .stat-tile {
    width: 270px;
  }

  .stat-tile img {
    width: 270px;
    padding-top: 45px;
  }

  .abyss2 {
    display: none;
  }

  .abyss-space {
    display: none;
  }

  .top p {
    padding-top: 0;
  }
}

/*Tablet Styles*/
@media only screen and (min-width: 651px) and (max-width: 850px) {
  body {

  }

  .gallery {
  max-width: 100%;
  position: sticky;
  left: 0;
  top: 0;
  background-color: #0B5345;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  }

  .gallery img {
  width: 100%;
  border: 4px solid #C0C0C0;
  border-radius: 1px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: left;
  margin: 0;
  padding: 0;
}

.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: 100%;
  justify-content: center;
  text-align: center;
  margin-left: 0;
}

.blog-subscribe {
  margin: 0;
  max-width: 100%;
}

h1 {
  max-width: 90%;
  align-items: center;
}

header {
  text-align: center;
}

p {

}

.form {
  margin-left: 0;
  color: #FCF3CF;
}

.content {
  background-color: #0B5345;
  color: #FCF3CF;
  width: 100%;
  max-width: 100%;
}

.footer {
  margin-left: 0;
}

.footer p {
  color: #FCF3CF;
}

body {
  width: 100%;
  background-color: #0B5345;
}

.blog-subscribe{
  background-color: #0B5345;
  display: none;
  }


.stars-ol {
    align-items: center;
    justify-content: left;
    align-text: left;
    font-family: "Roboto", "Calibri", sans-serif;
    list-style-type: '⭐';
    margin: 15px 15px 15px 15px;
    padding: 5px;
    max-width: 650px;
  }

  .abyss {
    flex-grow: 1;
  }

  .abyss p {
    padding-left: 0;
  }

  .stat-tile {
    width: 360px;
  }

  .abyss2 {
    display: none;
  }

  .abyss-space {
    display: none;
  }

  .top-p {
    padding-top: 50px;
  }
}

@media only screen and (min-width: 851px) and (max-width: 1050px) {
  body {

  }

  .gallery {
  max-width: 100%;
  position: sticky;
  left: 0;
  top: 0;
  background-color: #0B5345;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  }

  .gallery img {
  width: 100%;
  border: 4px solid #C0C0C0;
  border-radius: 1px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: left;
  margin: 0;
  padding: 0;
}

.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: 100%;
  justify-content: center;
  text-align: center;
  margin-left: 0;
}

.blog-subscribe {
  margin: 0;
  max-width: 100%;
}

h1 {
  max-width: 90%;
  align-items: center;
}

header {
  text-align: center;
}

p {

}

.form {
  margin-left: 0;
  color: #FCF3CF;
}

.content {
  background-color: #0B5345;
  color: #FCF3CF;
  width: 100%;
  max-width: 100%;
}

.footer {
  margin-left: 0;
}

.footer p {
  color: #FCF3CF;
}

body {
  width: 100%;
  background-color: #0B5345;
}

.blog-subscribe{
  background-color: #0B5345;
  display: none;
  }


.stars-ol {
    align-items: center;
    justify-content: left;
    align-text: left;
    font-family: "Roboto", "Calibri", sans-serif;
    list-style-type: '⭐';
    margin: 15px 15px 15px 15px;
    padding: 5px;
    max-width: 650px;
  }

  .abyss {
    flex-grow: 1;
  }

  .abyss p {
    padding-left: 0;
  }

  .stat-tile {
    width: 360px;
  }

  .abyss2 {
    display: none;
  }

  .abyss-space {
    display: none;
  }

  .top-p {
    padding-top: 100px;
  }
}

/*Desktop Styles*/
@media only screen and (min-width: 1051px) {
  body {
  }

  .abyss2 {
    display: none;
  }
}
