html,body{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    height: 100%;
}
.container{
    display:grid;
    background:linear-gradient(purple,lavender, white);
    grid-gap:1rem;
    grid-template-columns: repeat(12,1fr);
    grid-template-rows: auto auto auto auto auto auto auto auto auto auto auto auto;
    grid-template-areas:
    "h h h h h h h h h h h h"
    "h h h h h h h h h h h h"
    ". . . . . . . . . . . ."
    ". . . . . . . . . . . ."
    "m m m . b b b b . a a a"
    "m m m . b b b b . a a a"
    ". . . . . . . . . . . ."
    ". . . . . . . . . . . ."
    "p p p p p p p p p p p p"
    "p p p p p p p p p p p p"
    "f f f f f f f f f f f f"
    "f f f f f f f f f f f f";
}
img{
    max-width: 100%;
    height: auto;
}

.header{
    grid-area: h;
    border:0.313rem dotted white;
    background-color: purple;
    text-align: center;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: white;
    font-size: 1.25rem;
    font-style: italic;
}

nav ul{
    font-size: 1rem;
    font-weight: bolder;
    display: flex;
    justify-content: space-between;
    list-style-type: none;
    color: hotpink;
}

nav ul li a{
    margin-right: .7rem;
    text-decoration: none;
    color: white;
}


.menu{
    grid-area:m;
    display: grid;
    font-family: cursive;
    color: white;
    text-align: center;
    margin-left: 0rem;
    border:0.188rem dotted white;
    background-color:gray;
    place-items: center;
    overflow: hidden;
}

.contenta{
    grid-area:a;
    display: grid;
    place-items: center;
    overflow: hidden;
    font-family: cursive;
    color: white;
    text-align: center;
    background-color: gray;
    border: 0.188rem dotted white;
}

.contentb{
    grid-area: b;
    font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    color: gray;
    text-align: center;
    font-size: 1.5rem;
    background-color: lavender;
    border: 0.188rem dotted black;
}

.parallax{
    grid-area: p;
    background-image: url('../images/whiteparallex.jpg');
    min-height: 37.5rem;
    background-attachment: fixed;
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
}

.para{
    background-color: white;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 1.375rem;
}

.footer{
    grid-area:f;
    border:0.188rem dotted white;
    background-color:lavender;
    display: flex;
    justify-content: space-evenly;
}
.footer ul{
    margin-left: 0rem;
    list-style-type: none;
}
.footer ul a{
    text-decoration: none; /*this removes the bullet points from the ordered lists*/
}
.footer ul a li{
    color: black;
}




.symbol ul{
    padding-left: .3rem;
}

.fa{
    padding: .3rem;
    text-align: center;
    text-decoration: none;
}

.fa:hover{
    opacity: 0.7; 
}

.fa-facebook{
    background-color: blue;
    color: white;
}
.fa-twitter{
    background-color:#6495ed;
    color: white;
}
.fa-instagram{
    background-color:#8a2be2;
    color: white;
}
.fa-snapchat-ghost{
    background-color: yellow;
    color: white;
    text-shadow: -0.063rem 0 black, 0 0.063rem  black, 0.063rem  0 black, 0 -0.063rem  black;
}

form{
    border: 0.188rem solid blueviolet;
}

@media only screen and (max-device-width:48.75rem){
    nav ul{
        display: block;
    }
}
