 /* Reset */
html, body, header, nav, h1, a,
ul, li, strong, main, button, i,
section, img, div, h2, p, form,
fieldset, label, input, textarea,
span, article, footer, time, small, 
h3, h4, h5, pre {
  background: transparent;
  border: 0;
  border-radius: inherit;
  box-sizing: inherit;
  color: inherit;
  display: block;
  font: inherit;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  text-align: inherit;
  text-decoration: none;
  vertical-align: inherit;
  word-wrap: inherit;
}

body {
  background-color: #F5F5F5;
}

img {
  max-width: 100%;
  height: auto;
  width: auto/9;
  object-fit: contain;
  display: block;
}

h1 {
  font-size: 2.2em;
  color: #FFF;
}

h3 {
  font-size: 1.8em;
}

.navigation {
  display: flex;
  justify-content: center;
  background-color: #2e2f30;
  padding: 5px;
}

.name {
  background-color: #2e2f30;
  padding: 15px;
}

.container {
  margin-top: 2%;
}

.row, .home_images {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.click_me {
  margin-left: 5%;
  margin-right: 5%;
  padding-bottom: 5%;
  background-color: #FFF;
  transition: all .2s ease-in-out;
  box-shadow: 0px 5px 2px -3px #cbcfd3;
  padding-top: 4%;
  padding-right: 4%;
  padding-left: 4%;
}

.click_me:last-child {
  margin-top: 5%;
}

.click_me:hover {
  transform: scale(1.01);
  box-shadow: none;
}

.small_container {
  display: inline-block;
}

.inside_me {
  margin-top: 5%;
  padding: 1%;
  font-size: 1.4em;
}

.inside_left {
  float: left;
}

.inside_right {
  float: right;
}

.inside_left::after, .inside_right::after {
  clear: both;
}

.column_left {
  padding-top: 50px;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
  justify-content: center;
}

.summary {
  font-size: 1.4em;
}

.contact {
  padding: 20px;
}

.photos {
  display: flex;
  justify-content: space-around;
  margin-top: 50px;
  margin-bottom: 50px;
}

.photo_left, .photo_right {
  border-radius: 2%;
}

.photo_left {
  margin-right: 5px;
}

.photo_right {
  margin-left: 5px;
}

.info {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.details {
  word-wrap: normal;
  flex-direction: row;
}

.details_inner {
  margin-bottom: 10px;
}

.details_left {
  margin-right: 10px;
  font-size: 1em;
}

.details_right {
  margin-left: 10px;
  font-size: 1.6em;
}

.details_hover {
  transition: all .001s ease-in-out;
}

.details_hover:hover {
  transform: scale(1.01);
}

/* Sub-HTML pages */ 
.outer_div, .box {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.outer_div {
  margin-top: 10px;
}

.box {
  margin-bottom: 10px;
}

.img_default {
  transform: translateX(50%);
  opacity: 0;
  transition: all 500ms;
}

.fade {
  transform: translateX(0);
  opacity: 1.0;
  transition: all 500ms;
}

.footer {
  display: flex;
  justify-content: center;
  border-top: 1px solid rgb(238, 238, 238);
  padding: 20px;
  background-color: #2e2f30;
}

@media screen and (min-width: 1300px) {
  .info {
    margin: 50px;
  }
}

@media screen and (min-width: 1900px) {
  .row {
    border-radius: none;
  }

  .home_images {
    border: none;
  }
}

/* Internet Explorer IS A SPECIAL CUPCAKE */
/* Internet Explorer 10 & 11 */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  /* IE10+ CSS styles go here */
  .inside_me {
    padding-bottom: 100px;
  }
}

/* Internet Explorer 9 */
@media screen and (min-width:0\0) and (min-resolution: .001dpcm) { 
  .name, .column_left, .footer {
    text-align: center;
  }

  .container {
    text-align: center;
  }

  .row {
    margin-left: auto;
    margin-right: auto;
  }

  /* .small_container {
    margin: auto;
  }
 */
  .inside_me {
    padding-bottom: 100px;
  }

  h3 {
    text-align: center;
  }
  
  .photos, .details {
    margin-left: 40%;
  }

  /* Sub-HTML pages */
  .outer_div {
    text-align: center;
    margin: auto;
  }

  .box {
    margin-left: auto;
    margin-right: auto;
  }  
}

/* Internet Explorer 8 */
@media \0screen\,screen\9 {
  .name, .column_left, h3, .footer {
    text-align: center;
  }

  .container {
    text-align: center;
  }

  .row {
    margin-left: auto;
    margin-right: auto;
  }

  .ie8_row {
    margin-top: 5%;
  }    

  .column_left {
    margin-bottom: 5%;
  }    

  .inside_me {
    padding-bottom: 100px;
  }

  .photos, .details {
    margin-left: 40%;
  }

  /* Sub-HTML pages */
  .outer_div {
    text-align: center;
  }

  .box {
    margin-left: auto;
    margin-right: auto;
  }
}