*{
    box-sizing:border-box;
    font-family:sans-serif;
    margin:0;
    padding:0;
    
}
body{
    display: grid;
    width: 100%;
    grid-template-columns:minmax(10%, 30%) 960px minmax(10%,30%);
    grid-template-rows: 25% 5% auto auto auto auto;
    background-color: #1B1B1B;
    color: white;
}

header{
    grid-area:1/1/2/-1;
    text-align: center;
    padding:10px 0 10px 0;

}

nav{
    grid-area:2/1/3/-1;
    background-color:white;
    text-align: center;
}

nav ul{
    height:100%;
}
nav li{
    margin;0;
    display: inline-block;
    padding-top: .3%;
    padding-bottom: .4%;
    padding-left: 3%;
    padding-right: 3%;
}
nav ul a{
    color:black;
    font-weight:bold;
    text-transform: uppercase;
    text-decoration: none;
    list-style-type: none;
    font-size:1.25em;
        
}

main{
grid-area: 3/1/6/-1;
}

footer{
    padding-top:1%;
    background-color:#1B1B1B;
    grid-area: 6/1/-1/-1;
    text-align: center;
}
#footerText{
    margin-top: 5px;
    margin-bottom: 5px;
    height:90%;
}
.socialIcons{
    display: inline-block;
}

#insta{
    border-radius:50%; 
    background-color: white;
    float:right;
    margin-right:10px;
}
#homeHero{
    display:grid;
    height:300px;
    background-image:url(../images/mainHero.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    grid-area:3/1/4/-1;
    margin-top: 2%;
}
.trifold{
    padding-left:9%;
    display: inline;
    grid-area:4/1/5/-1;
    width:40%;
}

.trifold img{
    margin-top:2%;
    margin-bottom:.5%;
}

#stairs{
    padding-right:9%;
}
.skewLineR{
    height: 2px;background: #F30400;transform: skewY(.5deg);
}
.skewLineL{
    height: 2px;background: #F30400;transform: skewY(-.5deg);
}
.redLine{
    height: 2px; background: #F30400; margin-top: 5px; margin-bottom: 5px;
}