html,body{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    height: 100%;
}
.container{
    display:grid;
    background:linear-gradient(hotpink,beige);
    grid-gap:1rem;
    grid-template-columns: repeat(12,1fr);
    grid-template-rows: auto auto 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 d d d c c c r r r"
    "m m m d d d c c c r r r"
    ". . . . . . . . . . . ."
    "p p p p p p p p p p p p"
    "p p p p p p p p p p p p"
    ". . . s s s s s s . . ."
    ". . . s s s s s s . . ."
    "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 hotpink;
    background-color: beige;
}




nav ul{
    font-size: 1rem;
    font-weight: bolder;
    display: flex;
    justify-content: space-between;
    list-style-type: none;
}

nav ul li a{
    margin-right: .7rem;
    text-decoration: none;
}

.fun{
    font-size: 1.5rem;
    background-color: transparent;
    border-radius: 5rem;
    color: black;
    cursor: pointer;
    padding: .35rem .35rem;
}

.fun:hover{
    background-image: linear-gradient(hotpink, aqua, lightblue, white);
    animation: slide 3s linear infinite;
}

@keyframes slide{
    to {
        background-position: 20vw;
    }
}

.dropdown .dropbutton{
    font-size: .75rem;
    color: black;
    background-color: lavender;
    border: 0.188rem dotted hotpink;
}

a:hover .dropdown:hover .dropbutton{
    background-color: lightblue;
}

.dropdown-content{
    display: none;
    position: absolute;
    width: 8rem;
    background-color: salmon;
    font-size: .9rem;
}

.dropdown-content a{
    color: black;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover{
    background-color: lightseagreen;
}
.dropdown:hover .dropdown-content{
    display: block;
}








.menu{
    grid-area:m;
    background-image: url('../images/pinkdaisy.jpg');
    background:cover;
    margin-left: 0rem;
    border:0.188rem dotted white;
    background-color:lightpink;
    color: white;
    font-family: Georgia, 'Times New Roman', Times, serif;
    text-align: center;
    font-size: 1.5rem;
}



.contentc{
    grid-area: c;
    background-color:bisque;
    border: 0.188rem dotted black;
}

.contentd{
    grid-area:d;
    background-color: lightblue;
    border: 0.188rem dotted black;
}
.contentr{
    grid-area: r;
    background-image: url('../images/whiteflowers.jpg');
    background:cover;
    background-color:lightyellow;
    border: 0.188rem dotted hotpink;


}

.parallax{
    grid-area: p;
    background-image: url('../images/parallexpic.jpg');
    min-height: 50rem;
    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;
}



.sidebar{
    grid-area:s;
    background: cover;
    background-color: lightcoral;
    border: 0.188rem dotted blueviolet;
    text-align: center;
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: white;
}




.footer{
    grid-area:f;
    border:0.188rem dotted white;
    background-color:hotpink;
    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: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}

form{
    border: 0.188rem solid blueviolet;
}


.secondrow{
    grid-area:r;
    border:0.188rem dotted palevioletred;
    background-color:hotpink;
}

.dont{
    grid-area:d;
    border:0.188rem dotted white;
    background-color:hotpink;
}


.containertwo{
    padding: 0.5rem;
    background-color: aquamarine;
}



.black{
    color: black;
}

.shift{
    color: black;
    font-weight: bold;
    align-content: center;
}


.hide{
    display: none;
}

h2{
    text-align: center;
    margin: auto;
}

.myDIV{
    text-align: center;
    color: indigo;
    font-size: 18px;
}

.myDIV:hover + .hide{
    display: block;
    width: 500px;
}
@media only screen and (max-device-width:48.75rem){
    nav ul{
        display: block;
    }
}