* {
  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;
}

h2 a {
  font-family: "Candara", "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;
}

ol li {
  padding-bottom: 10px;
}

.body-top p {
  padding-bottom: 10px;
  font-family: "Roboto", "Calibri", sans-serif;
}

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;
}

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;
  text-align: center;
}

h3 {
  font-size: 17px;
}

h4 {
  align-content: center;
  font-size: 25px;
}

h5 {
  font-size: 15px;
}

.illustration img {
  width: 100%;
  display: block;
  justify-content: center;
}

.nav-container {
  height: 90px;
  overflow: hidden;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 90%;
  margin: auto;
}

.nav-container .navbar {
  justify-content: space-evenly;
}

.navbar ul {
  list-style: none;
  background: #EEEEEE;
  padding: 20px;
  margin: 10px 10px 10px 10px;
  justify-content: space-between;
  width: 90%
}

.navbar ul li {
  list-style-type: none;
  width: 20%;
  text-align: center;
  justify-content: space-around;
}

.navbar a {
  color: #414141;
  font-family: "Palatino", "Calibri", sans-serif;
  text-transform: uppercase;
  font-size: 12px;
}

.navbar a:hover {
  background: #B2D6FF;
  color: #000000;
}

ul li {
  float: left;
}

a {
  display: block;
  padding: 10px;
  background color: #B2D6ff;
}

ol a {
  padding: inherit;
}

.blog img {
  border: 3px solid #000000;
  margin: 10px 10px 10px 10px;
}

.gallery {
  margin: 10px 10px;
  max-width: 95%;
  justify-content: center;
  align-items: center;
}

.gallery img {
  width: 350px;
  border: 3px solid #ffffff;
  border-radius: 8px;
  margin: 10px 10px 10px 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gallery img:hover {
  transform: scale(1.05, 1.05);
  transition: .5s;
}

h6 a {
  font-family: "Candara", "Calibri", sans-serif;
  font-size: 25px;
}

.form-row label {
  width: 350px;
  text-align: center;
  justify-content: center;
}
.blog-subscribe img {
  border: 3px solid #414141;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 250px;

}


/*Mobile Styles*/
@media only screen and (max-width: 425px) {
  body {
    background-color: #EEEEEE;
  }

  .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: 20%;
    text-align: center;
  }

  .blog-subscribe img {
  border: 3px solid #414141;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 250px;

}
}

/*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: 20%;
    text-align: center;
    justify-content: space-around;
  }
}

/*Desktop Styles*/
@media only screen and (min-width: 961px) {
  body {
    background-color: #EEEEEE;
  }
}
