*{
    box-sizing:border-box;
    text-decoration: none;
    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: 10% 5% auto auto auto auto auto;
    background-color: #1B1B1B;
    color: white;
}

header{
    grid-area:1/1/2/-1;
    text-align: center;
    margin:10px 0 10px 0;

}

header img{
    grid-area:1/1/2/-1;
    height: 100%;
    width:auto;
}

nav{
    padding-top: .3%;
    position:sticky;
    top:0;
    width:100%;
    grid-area:2/1/3/-1;
    background-color:white;
    text-align: center;
    margin:5px 0;
    z-index: 3;
}
nav ul{
    grid-area:2/1/3/-1;
    height:100%;
}
nav li{
    justify-content: space-between;
    margin:0;
    display: inline-block;
    padding-top: .4%;
    padding-bottom: .4%;
    padding-left: 3%;
    padding-right: 3%;
    
}

nav ul a{
    color:black;
    font-weight:bold;
    text-transform: uppercase;
    list-style-type: none;
    font-size:1.25em;
        
}

nav ul a:hover{
    color:#F30400;
}

main{
grid-area: 3/1/7/-1;
}


#homeHero{
    display:grid;
    height:300px;
    width:auto;
    background-image:url(../images/heroRight.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    grid-area:3/1/4/-1;
    margin-top: 2%;
}

main li{
    display:inline;
    margin-left: 16%;
    margin-right: 7%;
    font-size: 1.5em;
    
}

#heroText{
    color:white;
    margin-left:25%;
    margin-right: 45%;
    margin-top:8%;
    font-size:2em;
}
.button {
    font-weight: bold;
    grid-area:3/1/4/-1;
    padding-bottom: 1%;
    width:10%;
    height:7%;
    margin-left: 25%;
    background-color: #1B1B1B;
    border: none;
    border-radius: 4px;
    color: white;
    padding: 15px 32px;
    margin-bottom: 5%;
    margin-top: 2%;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
    z-index: 2;
    line-height: 5%;
}

.button:hover {
  background-color:white;
  color: #1B1B1B;
    font-weight: bold;
}

.topText{
    grid-area:4/2/5/3;
    color:black;
    background-color: white;
    
}

.aboutText{
    padding-top: 10px;
    padding-bottom: 10px;
    margin:2% 10% 2% 10%;
}

.trifold{
    padding-left:9%;
    padding-bottom: 10px;
    display: inline;
    grid-area:5/2/6/3;
    width:40%;
}

.trifold img{
    margin-bottom:.5%;
    width:20%;
}

#stairs{
    padding-right:9%;
}

.bottomText{
    box-sizing: border-box;
    grid-area:5/2/6/3;
    height:auto;
    width:100%;
    color:black;
    background-color: white;
    margin-top:2%;
    display:flex;
    justify-content: center;
    
}

.partnerText{
    float:left;
    width:40%;
    padding-top: 10px;
    padding-bottom: 10px;
    margin:2% 0 5% 10%;
}
.donatePhoto{
    float:left;
    padding-left:10px;
    margin:2% 10% 0 0;
}

#donationPhoto{
    float:right;
    margin: 0 0 0 5px;
    width:350px;
    height:auto;
}

.contactForm{
    width:80%;
    margin-left: 10%;
    padding: 10px 10%;
    color:white;
}

.contactForm input, select, textarea{
    padding:10px;
    color:white;
    background-color:#1B1B1B;
    resize:vertical;
    width:100%;
}

input[type=submit] {
  color: white;
  padding: 12px 20px;
  border: 2px solid white;
  border-radius: 4px;
}

footer{
    color:white;
    bottom:0;
    padding-top:1%;
    background-color:#1B1B1B;
    grid-area: 7/1/-1/-1;
    text-align: center;
}

.footer{
    height:90%;
}
.footerText{
    display:flex;
    flex-direction: column;
    color:white;
    padding-top:4px;
    margin-top: 10px;
    margin-bottom: 5px;
    width:30%;
}

footer a {
    color:white;
}

.footerMenu{

    float:left;
    margin-left:10%;
}
.socialIcons{
    display: inline-block;
    float:right;
}

#insta{
    border-radius:50%;
    width:32px;
    background-color: white;
    float:right;
    margin-right:10px;
}

#fb {
    border-radius:50%; 
    background-color: white;
    float:right;
    margin-right:10px;
    }

#footerCopyright {
    margin-top: 10%;
    align-self: flex-end;
    text-align: center;
    
}
.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;
}

@media only screen and (max-width:992px){
    body{
        grid-template-columns:0 auto 0;
        grid-template-rows: 10% 3% auto auto auto auto auto;
        width:100%;
    }
    nav{
        margin:5px 0;
        padding: 0 10%;
    }
    nav ul{
        width:100%;
        display:flex;
        flex-direction: row;
        padding:0;
        margin:0;
        align-items: center;
        justify-content: space-between;
    }
    nav ul li{
        margin:0;
        padding:0;
        display:flex;
        justify-content: center;
    }
    
    .button{
        box-sizing: content-box;
        width:10%;
        margin-top: 0;
        margin-bottom: 7%;
    }
    
    .button p{
        box-sizing: border-box;
    }
    
    main{
        grid-area: 3/2/7/3;
    }
    footer{
        grid-area: 7/2/-1/3;
    }
    .trifold{
        display:flex;
        justify-content: center;
        padding:0;
        margin:0;
    }
    .trifold img{
        height:260px;
        width:auto;
    }
    #stairs{
        padding-right: 0;
    }
    
    heroText{
        margin-right:80%;
        padding:0;
        margin-bottom:0;
    }
    .trifold{
        display:flex;
        width:100%;
        justify-content: center;
        padding:0;
        margin:0;
    }
    .trifold img{
        height:260px;
        width:auto;
    }
    
    
    homeHero{
        background-size: auto;
    }
    
    .bottomText{
        display:flex;
        flex-direction: column;
    }
    .partnerText{
    width:100%;
    float:none;
    margin:2% 0 2% 0;
    padding: 0 10%;
}
    .donatePhoto{
    width:100%;
    margin:2% 0 2% 0;
    padding: 0 10%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    }
    
    #donationPhoto{
        float:none;
        align-content: center;
    }
    
    #insta{
    float:right;
    margin-right:20px;
}

    #fb {
    float:right;
    margin-right:20px;
    }

    
}
@media only screen and (max-width:768px){
    
    body{
        grid-template-columns:0 auto 0;
        grid-template-rows: 5% 2% auto auto auto auto auto;
        width:100%;
    }
    nav{
        margin:2px 0;
        padding: 0 5%;
    }
    #stairs{
        padding-right: 0;
    }
}

@media only screen and (max-width:440px){
    nav{
        margin:2px 0;
        padding: 0 3%;
    }
    nav ul a{
        font-size:1em;
    }
}