*{
    margin: 0px;
    padding: 0px;
    color: #ECEDEE;
}

:root{
    --branding-primary: #218223;
    --background: #293036;
    --nav-background: #25292e;
}

body{
    background-color: var(--background);
}

/* Custom Fonts */
@font-face {
    font-family: 'Candara'; /*a name to be used later*/
    src: url('/assets/CANDARA.TTF'); /*URL to font*/
}

/* Generic Classes */
.align-right{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.brand-font{
    font-family: 'Candara';
}

.center{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
}

.grid-1-1{
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
}

/* NavBar Styles */
nav{
    height: 12vh;
    padding: 1vh 5vw; 
    background-color: var(--nav-background);
    position: fixed;
    width: 100%;
    z-index: 2;
}

#branding-logo{
    height: 12vh
}

#nav-spacer{
    height: 12vh;
    padding: 1vh 5vw;
}

/* Hero Styles */
#hero{
    background-image: url(/assets/hero-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: 0px -800px;
    height: 30vh;
}

#hero .shade{
    background-color: rgba(0,0,0,.65);
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#hero h2{
    font-size: 32px;
    transition: all 1s;
}
#hero p{
    max-width: 70vw;
    width: 800px;
    font-size: 18px;
    text-align: center;
    animation: slide-right 4s;
    animation-delay: .8s;
    opacity: 0;
    animation-fill-mode: forwards;
}
@keyframes slide-right {
    from {
        opacity: 0;
       margin-left: -1600px;
    }

    to {
       margin-left: 0%;
        opacity: 1;
    }
 }

 /* Main Content styles */
#main{
    padding: 4vw 15vw;
}
.content-section img{
    width: 60%;
}

/* Footer Styles */
footer{
    background-color: var(--nav-background);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.footer-links a, footer p{
    text-decoration: none;
    margin: 5px;
    font-family: 'Candara';
}

.app-store-button{
    height: 30px;
    padding-top: 10px;
    cursor: pointer;
}

/* Media Styles */
@media (max-width: 750px) {
    .grid-1-1, .grid-2-1{
        grid-template-columns: 1fr;
    }

    #hero{
        background-position: center -225px;
    }

    #main{
        padding: 4vh 15vw calc(4vw + 75px) 15vw;
    }

    .content-section img{
        width: 100%;
    }
    .content-section{
        padding-top: 50px;
    }
    .content-section h1{
        font-size: 26px;
        margin-bottom: 10px;
    }
}

