body {
    height: 100%;
    margin: 25px;
    min-height: 100vh; 
    display: flex;
    flex-direction: column;
}

#abovefold {
    display: inline-flex;
}

a:hover {
    color: #CD5819; 
}


#belowfold {
    width: 100%;
    display: inline-flex;
}

.button1 {
    align-content: space-around;
    font-size: 16px;
    font-weight: bold;
    font-family: courier, sans-serif;
    padding-bottom: 1in;
}

#calltoaction {
    animation-name: appear;
    animation-duration: 3s;
    animation-delay: 2s;
    animation-iteration-count: 1;
    animation-fill-mode: both;
    
}
@keyframes appear {
  from { 
      opacity: 0%;
    }
  to   { 
      opacity:100%;
    }
}

#calltoaction {
    text-align: left;
    font-size: 16pt;
    font-family: Tahoma, Arial, sans-serif;
    color: black;
}

#calltoaction {
    animation-name: move;
    animation-duration: 3s;
    animation-delay: 2s;
    animation-iteration-count: 1;
    animation-fill-mode: both;
}

@keyframes move {
   from {
      transform: translateY(120px);
   }
   to {
      transform: translateY(0px);
   }
    from { 
      opacity: 0%;
    }
    to   { 
      opacity:100%;
    }
}

    
#calltoaction {
    width: 30%;
    float: right;
}



.firstgraph::first-letter {
    font-size: 24pt;
    color: #C8B6AD;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}

.flex-container {
    flex-flow: wrap;
}

#footer {
    clear: both;
    width: 100%;
    float: none;
    margin-top: auto;
    padding-top: 20px;
    border-top-width: 0.25in;
    border-top-style:  ridge;
    border-top-color: #41B0F6;
}



header {
    background-color: #C8B6AD;
}

#heroimage #mask {
    width: inherit;
    float: left; 
}


img:hover {
    background-color: #CD5819; 
}

.menubutton:hover {
   transform: scale(1.05, 1.05);
   color: #CD5819;  
}

.menubutton img {
    margin: 5px;
    margin-top: 1in;
    padding: 5px;
    height: 192px;
    max-width: 100%;
    max-height: 100%;
}

.menubutton img {
    display: inline-block;
    flex-direction:column;
}

.menubutton img {
    animation-name: fadeup;
    animation-duration: 8s;
    animation-delay: 5s;
    animation-fill-mode: both;
}

@keyframes fadeup {
    from {
        opacity: 0;
    }
    to {
        opacity: 100;
    }
}

#nav a {
    text-decoration: none;
}

#navlogo {
    width: 100px;
}


nav ul {
    list-style: none;
}

nav li {
    text-decoration: none;
    font-size: 24pt;
    font-family: Courier, sans-serif;
    display: inline-block;
    padding: 16px;
}




span {
    position: sticky;
}