/*


    font-family: 'Barlow', sans-serif;

    font-family: 'Fugaz One', cursive;

    font-family: 'Press Start 2P', cursive;

    font-family: 'Jockey One', sans-serif;


*/
html{
    font-size: 16px;
    width: 100%;
    height: 100%;
}

head{
    width: 100%;
    height: 10%;
}

body{
    font-family: 'Press Start 2P', cursive;
    color:white;
    background: radial-gradient(rgb(27, 24, 24), black);
    width: 100%;
    height: 90%;
}

nav{
    display: flex;
    align-items: center;
}

nav a{
    text-decoration: none;
    color: white;
    margin: 0px 10px;
}

.mainContainer{
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid grey;
}

.leadSection{
    border: 1px solid grey;
    margin: 0;
    display: flex;
    flex-direction: column;
    background-image: url(images/YeahLrg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: center;
    background-position-y: center;
    width: 100%;
    flex: 1;
}

.leadItem{
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

#lead{
    text-align: center;
    font-size: 4rem;
    margin: 10px;
    text-shadow: 2px 2px black;
}

.subLead{
    text-align: center;
    text-shadow: 2px 2px black;
}

.subSection{
    border: 1px solid grey;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    flex: 1;
}

.subItem{
    display: flex;
    flex-direction: column;
    justify-content: center;
    object-fit: cover;
    object-position: center;
    flex: 1 1 33%;
}

.subItemImg{
   width: 100%;
}

.button{
    background-color: #007c8d;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    font-family: 'Press Start 2P', cursive;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wave{
    background-image: url("images/Pow-Wave.png");
    width: 48px;
    height: 64px;
    animation: wavePow 0.6s steps(2) infinite;
}

.jeep{
    width: 96px;
    height: 72px;
    background-image: url("images/Jeep-Move-0.png");
    animation: jeepMove 0.2s steps(2) infinite;
}

@keyframes wavePow{
    100%{
        background-position: -96px;
    }
}

@keyframes jeepMove{
    100%{
        background-position: -192px;
    }
}