/* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
=-= STYLES DESIGNED AND BUILT BY SEYEON THOMPSON -=-=
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */

* {
    margin: 0;
    padding: 0;
  }

@keyframes fade-in {
  0%          {opacity: 0;}
  100%        {opacity: 1;}
}

    @-moz-keyframes fade-in {
      0%    {opacity: 0;}
      100%  {opacity: 1;}
    }

    @-o-keyframes fade-in {
      0%    {opacity: 0;}
      100%  {opacity: 1;}
    }
    
    @-webkit-keyframes fade-in {
      0%    {opacity: 0;}
      100%  {opacity: 1;}
    }

.fade-in {
  animation-name: fade-in;
    -moz-animation-name: fade-in;
    -ms-animation-name: fade-in;
    -o-animation-name: fade-in;
    -webkit-animation-name: fade-in;
  animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    -webkit-animation-duration: 1s;
  animation-fill-mode: backwards;
    -moz-animation-fill-mode: backwards;
    -o-animation-fill-mode: backwards;
    -webkit-animation-fill-mode: backwards;
}

.fade-two {
  animation-delay: 2s;
    -moz-animation-delay: 2s;
    -o-animation-delay: 2s;
    -webkit-animation-delay: 2s;
}

.fade-three {
  animation-delay: 3s;
    -moz-animation-delay: 3s;
    -o-animation-delay: 3s;
    -webkit-animation-delay: 3s;
}

.fade-four {
  animation-delay: 4s;
    -moz-animation-delay: 4s;
    -o-animation-delay: 4s;
    -webkit-animation-delay: 4s;
}

header {
  font-family: cortado, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 30pt;
  color: #FFCD05;
  padding:  2%;
  float: left;
  display: inline-block;
}

header a {
  color: #FFCD05;
  text-decoration: none;
}

nav {
  padding: 3%;
  float: right;
  display: inline-block;
}

li {
  font-family: Helvetica, sans-serif;
  font-size: 10pt;
  display: inline;
}

li a {
  display: inline-block;
  color: #FFFFFF;
  text-align: center;
  padding: 5px;
  text-decoration: none;
}

li a:hover {
  text-decoration: underline;
}

main {
  padding-top: 8%;
}

body {
  background-color: #098346;
  text-align: center;
}

h1 {
  font-family: brandon-grotesque, sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 70pt;
  color: #FFFFFF;
  padding-top: 1%;
  padding-bottom: 1%;
}

h2 {
  font-family: brandon-grotesque, sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 30pt;
  color: #FFCD05;
}

h3 {
  font-family: brandon-grotesque, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 20pt;
  color: #FFFFFF;
}

h4 {
  font-family: brandon-grotesque, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18pt;
  color: #F57E20;
}

h5 {
  font-family: Helvetica, sans-serif;
  font-size: 12pt;
  color: #FFFFFF;
}

hr {
  border: 1px solid #FFCD05;
}

figure {
  width: 80vw;
  height: 100vh;
  margin:  5vh auto;
}


.column {
  float: left;
  width: 35%;
  margin-left: 10%;
  padding-bottom: 10%;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

@media screen and (max-width: 800px) {
  .column {
    width: 100%;
  }
}
#hours {
  text-align: left;
}

#greetings {
  text-align: right;
}

footer {
  background-color: #FFCD05;
  text-align: center;
  padding: 1%;
  font-family: Helvetica, sans-serif;
  font-size: 10pt;
  color: #FFFFFF;
}