
body {
    background-color: #EEEECF;
    margin: 0 10%;
    font-family: "oswald", sans-serif;
    font-weight: 400;
    font-style: normal;
    }


h1 {
color: #72583D;
text-align:center;
font-family:sans-serif;
text-transform:uppercase;
/* border-bottom:1px solid ; */
margin-bottom: 40px;
font-family: "amplitude", sans-serif;
font-weight: 500;
font-style:normal;
}

h3 {
    color: #72583D;
font-size: 3em;
margin: 0%;
text-align: left;
}

.center {
    display: block;
  margin-top: 10em;
  margin-left: 18em;
    width: 50%;
  }

/* main {
background-color: #838E73;
padding: 20px 15px;
margin: 5px; }*/

h2 {
color: #838E73;
font-size: 2em;
font-family: "amplitude", sans-serif;
font-weight: 400;
font-style: normal;
}

p {
font-family:'Trebuchet MS', serif;
}

hr{
height: 1px;
background-color: #72583D;
border: none; 
}


/* NAV BAR */
nav{
width: 100%;
position: relative;
top:50px;
text-align:center;
height: 3px;
width: 100%;
background-color: #838E73;
}

nav a{
font-family: 'Oswald', sans-serif;
font-weight:500;
text-transform:uppercase;
text-decoration:none;
color:#72583D;
margin: 15px;
font-size:20px;
letter-spacing:1px;
position:relative;
display:inline-block;
float: left;
padding: 14px 16px;
}

nav a:before{
content:'';
position: absolute;
width: 100%;
height: 4px;
background:#424B54;
top:47%;
animation:out 0.2s cubic-bezier(1, 0, 0.58, 0.97) 1 both;
}

nav a:hover:before{
animation:in 0.2s cubic-bezier(1, 0, 0.58, 0.97) 1 both;
}

/* NAV BAR ANIMATION */
@keyframes in{
  0%{
    width: 0;
    left:0;
    right:auto;
  }
  100%{
    left:0;
    right:auto;
    width: 100%;
  }
}
@keyframes out{
  0%{
    width:100%;
    left: auto;
    right: 0;
  }
  100%{
    width: 0;
    left: auto;
    right: 0;
  }
}
@keyframes show{
  0%{
    opacity:0;
    transform:translateY(-10px);
  }
  100%{
    opacity:1;
    transform:translateY(0);
  }
}

@for $i from 1 through 5 {
  nav a:nth-child(#{$i}){
    animation:show .2s #{$i*0.1+1}s ease 1 both;
  }
}


/* BUTTONS */

.button2 {
display: inline-block;
transition: all 0.2s ease-in;
position: relative;
overflow: hidden;
z-index: 1;
color: #2e3021;
padding: 0.5em 1em;
font-size: 18px;
border-radius: 0.5em;
background: #9CB380;
border: 1px solid #fff;
box-shadow: 6px 6px 10px #9CB380,
          /* -6px -6px 10px #D4E09B; */
}

.button2:active {
color: #D4E09B;
box-shadow: inset 4px 4px 10px #9CB380,
          /* inset -4px -4px 10px #D4E09B; */
}

.button2:before {
content: "";
position: absolute;
left: 50%;
transform: translateX(-50%) scaleY(1) scaleX(1.25);
top: 100%;
width: 140%;
height: 180%;
background-color: rgba(0, 0, 0, 0.05);
border-radius: 50%;
display: block;
transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
z-index: -1;
}

.button2:after {
content: "";
position: absolute;
left: 55%;
transform: translateX(-50%) scaleY(1) scaleX(1.45);
top: 180%;
width: 160%;
height: 190%;
background-color: #72583D;
border-radius: 50%;
display: block;
transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
z-index: -1;
}

.button2:hover {
color: #ffffff;
border: 1px solid #72583D;
}

.button2:hover:before {
top: -35%;
background-color: #72583D;
transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.button2:hover:after {
top: -45%;
background-color: #72583D;
transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

/* fonts

font-family: "amplitude", sans-serif;
font-weight: 400;
font-style: normal;

*/