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 v v v v . . a a a"
    "m m m v v v v . . 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:#ff69b4;
}

nav ul li a{
    margin-right: .7rem;
    text-decoration: none;
    color: white;
}

.fun{
    font-size: 1.5rem;
    background-color: transparent;
    border-radius: 5rem;
    color: white;
    font-family: Georgia, 'Times New Roman', Times, serif;
    cursor: pointer;
    padding: .35rem .35rem;
}

.fun:hover{
    background-image: linear-gradient(white, lightpink, pink, beige);
    animation: slide 3s linear infinite;
}

@keyframes slide{
    to {
        background-position: 20vw;
    }
}


.menu{
    grid-area:m;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
    font-size: 1.25rem;
    text-align: center;
    margin-left: 0rem;
    border:0.188rem dotted white;
    background-color:#ffb6c1;
}

.contenta{
    grid-area:a;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
    font-size: 1.25rem;
    text-align: center;
    background-color: lightblue;
    border: 0.188rem dotted black;
}

.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;
}

.video{
    grid-area: v;
    margin-top: 2.5rem;
    position: absolute;
    top: 38%;
    left: 30%;
    bottom: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
}
.myVideo{
    position: relative;
    width: 38%;
    height: 70%;
    overflow: hidden;
}
@media only screen and (max-device-width:48.75rem){
    nav ul{
        display: block;
    }
}

