* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "arial";
}
html body {
    position: relative;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #222;
    height: 100vh;
}
section {
    width: 100vw;
    height: 100vh;
}
.carousel.carousel_BG {
    width: 100vw;
    height: 100vh;
}
.index_BG {
    background: url("../img/mountain_lake_masked.jpg") no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
#carousel_BG {
    background-color: #222; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.menuButton {
    display: block;
    color: #aa0044;
}
.ffooter {
    justify-content: space-around;
    display: flex;
    flex-wrap: wrap;    
    background: #222;
    border-top: #333;
    border-bottom: #333;
    color: #aa0044;
    position: fixed;
    height: 75px;
    width: 100%;
    bottom: 0;
    font-size: 1.3rem;
    padding-top: 20px;
}
@media only screen and (max-width: 500px)  {
    .ffooter {
        height: 100px;
        padding-top: 2px; 
        padding-bottom: 10px; 
    }
    .menuButton {
        display: block;
        width: 100%;
        padding-left: 15px;
    }
}
.container {
    /* position: relative; */
    background-color: #222;
    height: 100%;
}
.afterFoooter {
    width: 100%;
    top: 200px;
    height: 1000px;
}
#name {
    position: fixed;
    top: 27%;
    left: 5%;
    color: #aa0044;
    text-shadow: -1px 0 black, 0 2px black, 2px 0 black, 0 -1px black;
}
h1 {
    font-family: "Permanent Marker";
    font-size: 2.4rem; 
    font-weight: 900;
    letter-spacing: 5px;
    display: inline;
}
h2 {
    font-size: 2.0rem; 
    font-weight: 900;
    letter-spacing: 5px;
    display: inline;
}
h3 {
    font-family: "arial";
    font-size: 1.2rem; 
    font-weight: 900;
    letter-spacing: 2px;
}
a {
    font-family: "Permanent Marker";
    color: #fff;
    text-decoration: none;
}
.carousel {
    width: 100vw;
    height: 100vw;
    position: relative;
}
.carousel > ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
}
.slide > img {
    display: block;
    width: 100%;
    height: 800px;
    object-fit: cover;
}
.slide[data-active]  {
    opacity: 1;
}
.carousel-button {
    position: absolute;
    z-index: 2;    
    background: none;
    border: none;
    font-size: 4rem;
    top: 50%;
    transform: translateY(-50%);
    /* width: 50px;
    height: 20px; */
    color: rgba(170, 0, 68, .99);
    cursor: pointer;
    border-radius: .25rem;
    padding: 0, .5rem;
    background-color: rgba(0, 0, 0, .1);
}
.carousel-button:hover,
.carousel-button:focus {
    color: white;
    background-color: rgba(0, 0, 0, .2);
    outline: 1px solid black;    
}
.carousel-button.prev {
    left: 1rem;
}
.carousel-button.next {
    right: 1rem;
}