/* nav */

nav ul{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    margin:none;
    list-style: none;
    text-align: center;
    text-transform: uppercase;
    font-family: hydrophilia-iced,sans-serif;
    font-weight: 400;
    font-style: normal;
}

nav a{
    color: white;
    text-decoration: none;
}

#this-page{
    color :#9BBC0F;
}

/* hero */

.hero{
    margin-left: -10px;
    margin-right: -10px;
}

#hero-intro{
    background-image: url(images/hero_intro.png);
    background-size: cover;
}

#hero-origins{
    background-color: #0F380F;
}

#hero-platforms{
    background-color: #0F380F;
}

#hero-development{
    background-color: #0F380F;
}

#hero-industry{
    background-color: #0F380F;
}

.hero ul{
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin:none;
    list-style: none;
    text-align: center;
}

.hero img{
    width: 60%;
    padding-top: 100px;
}

#wii-img{
    width: 25%;
}

.hero h1{
    margin: 0;
    font-size: 70px;
}

/* text */

.headline{
    padding-top: 50px;
    font-size: 35px;
    font-weight: 700;
    color:#9BBC0F;
}

.subhead{
    font-size: 22px;
}

.small-text ul{
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
    list-style: none;
    column-gap: 5%;
    margin-top: 100px;
}

.small-text li{
    padding: none;
}

h3{
    text-transform: uppercase;
}

@media (max-width: 700px){
    nav ul{
        display: block;
    }
    .hero ul{
        display: block;
    }
    .hero h1{
        font-size: 30px;
    }

    .small-text ul{
        display: block;
    }
}



