@import url('https://fonts.googleapis.com/css?family=Roboto:100,300,400|Josefin+Slab|Bubblegum+Sans&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  width: 100%; 
  min-width: 360px; max-width: 1200px;
  height: 100%;
  border: 0px solid green;
  justify-content: stretch;
  max-width: 1200px;
  margin: auto;
  font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
  color: #333;
}

header, footer {
  padding: 15px;
}

header {
  display: flex;
  width: 100%;
  border: 0px solid red;
  justify-content: space-between;
}

main {
  min-height: 200px;
  border: 0px solid red;
  flex-grow: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

footer {
  align-self: flex-end;
  justify-self: flex-end;
  padding: 20px;
  font-weight: 100;
  font-size: 0.8rem;
}

header section {
  border: 0px solid red;
  text-align: center;
}

header section #logo {
  border: 0px solid red;
  background-image: 
    /*url("../CSS Grids/Felixo Smile.svg"), 
    url("../CSS Grids/Felixo Laugh.svg");*/
    url("Felixo Smile.svg"), 
    url("Felixo Laugh.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0px 0, 100px 0px;
  height: 117px;
  width: 100px;
}
header section #logo:hover {
  background-position: 101px 0px, 0px 0px;
}
header section #logo img {
  display: none;
}

header section h1 {
  font-size: 1em;
}

header section img {
  width: 100px;
}

nav {
  border: 0px solid blue;
  font-size: 1.4em;
}

ul {
  list-style-type: none;
  padding: 0px;
}
li {
  display: inline-block;
  padding: 10px;
  transition: .2s;
}
li:hover {
  background-color: #eee;
  padding-bottom: 20px;
}

li a {
  text-decoration: none;
  font-size: 0.9em;
  font-weight: 300;
  color: #900;
}

.nav-icon {
  height: 30px; width: 30px;
}

main h2, main h3 {
  
}

main h2 {
  text-align: center;
  font-size: 6em;
  padding: 20px;
}
main h3 {
  text-align: center;
  font-size: 2.8em;
}

main h2 small {
  font-weight: 300;
  font-size: 2.8rem;
}
main h2 small:before {
  content: "";
  position: relative;
  display: inline-block;
  top: 0px;
  right: 15px;
  background-color: #333;
  width: 2px;
  height: 100px;
}

main h3 small {
  font-size: 1.8rem;
  font-weight: 300;
}

@media all and (max-width: 450px){
  nav {
    font-size: 1.1em;
  }
  .nav-icon {
    width: 20px;
    height: 20px;
  }
  
  main h2 {
    font-size: 3.5em;
  }
  main h3 {
    font-size: 1.4em
  }
  
  main h2 small {
    font-size: 1.8rem
  }
  main h2 small:before {
    height: 80px;
    right: 10px;
  }
  
  main h3 small  {
    font-size: 1.1rem;
  }
}


@media all and (min-width: 451px) and (max-width: 600px) {
  header {
    flex-directions: column;
    align-items: center;
  }
  nav {
    font-size: 1.2em;
  }
  .nav-icon {
    width: 25px;
    height: 25px;
  }
  
  main h2 {
    font-size: 4em;
  }
  main h3 {
    font-size: 1.5em
  }
  
  main h2 small {
    font-size: 2rem
  }
  main h2 small:before {
    height: 80px;
    right: 10px;
  }
  
  main h3 small {
    font-size: 1.2rem;
  }
}
  
  