html,body{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    height: 100%;
}
.container{
    display:grid;
    background:linear-gradient(pink,red, lightpink, hotpink);
    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 . t t t t . a a a"
    "m m m . t t t t . 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: hotpink;
    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;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-align: center;
    color: white;
    margin-left: 0rem;
    border:0.188rem dotted white;
    background-color:lightpink;
}

.contenta{
    grid-area:a;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-align: center;
    color: white;
    background-color: lightpink;
    border: 0.188rem dotted white;
}

.footer{
    grid-area:f;
    border:0.188rem dotted white;
    background-color:lightpink;
    display: flex;
    justify-content: space-evenly;
}

.video{
    grid-area: v;
}


.footer{
    grid-area:f;
    border:0.188rem dotted white;
    background-color:lightpink;
    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:cornflowerblue;
    color: white;
}
.fa-instagram{
    background-color:blueviolet;
    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 hotpink;
}


table{
    grid-area: t;
    border: 0.125rem dotted white;
    border-collapse: collapse;
    text-align: center;
    width: 100%;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
th{
    border: 0.188rem solid palevioletred;
    background-color:lightpink;
    font-size: 1.125rem;
    color: lightgreen;
}
td{
    border: 0.188rem dotted palevioletred;
}
.row1{
    border: 0.188rem dotted palevioletred;
    background-color: lightskyblue;
    font-size: 1.125rem;
    color: black;
}
.row2{
    border: 0.188rem dotted palevioletred;
    background-color: lightskyblue;
    font-size: 1.125rem;
    color: black;
}
.row3{
    border: 0.188rem dotted palevioletred;
    background-color: lightskyblue;
    font-size: 1.125rem;
    color: black;
}

caption{
    color: white;
    font-size: 1.875rem;
    text-align: center;
}

@media only screen and (max-device-width:48.75rem){
    nav ul{
        display: block;
    }
}