 body,
        html {
            height: 100%;
        }

        body {
            font-family: ff-scala-sans-pro, sans-serif;
            font-size: 1em;
            
            background-color: #dcc6f3;
            margin: 0;
        }

        .container {
            display: grid;
            width: 100vw;
            height: 100vh;
            grid-template-areas:
                "header     header  header"
                "left       main    right"
                "footer     footer  footer";
            grid-template-columns: 50px 4fr 50px;
            grid-template-rows: 160px auto 1fr;
        }

       

        .header {
            grid-area: header;
            display: flex;
        }

      

        #logo {
            display: flex;
            padding-left: 3em;
            /* justify-content: center; */
            flex-grow: 1;

        }

        #social {
            display: flex; 
            justify-content: center;
            align-items: center;
            flex-grow: 1;

        }

        #main {
            grid-area: main;
            /* display: grid; */
            justify-content: center;
            align-items: center;
        }

        .left {
            grid-area: left;
        }

        .right {
            grid-area: right;

        }

        .footer {
            grid-area: footer;
            background-color: #BBB;

            padding: 50px 20%;
            font-size: 1.5em;
            
        }

        /* //////////////// NAV LINKS //////////////// */

       nav {
            display: flex;
            color: white;
            align-items: center;
            justify-content: center;
            flex-grow: 1;
        }

       nav a {
            letter-spacing: 2px;
            font-size: .8em;
            font-weight: 600;
            padding: 4px 7px;
            margin: 0 10px;
            text-transform: uppercase;
            text-decoration: none;

            border-radius: 3px;
        }

        /* unvisited link */
       nav a:link,
       nav a:visited {
            color: #030303;
            background-color: #7a53b6;
        }

        /* mouse over link */
       nav a:hover,
        n.navbar v a:active {
            color: #9055bb;
            background-color: rgb(76, 7, 111)
        }

        h1 {
            font-family: cooper-black-std, serif;
            color: #888;
            font-size:3em;
        }

        h1,h3, h5{
            text-align: center;
        
        
        }

        .about-text {
            margin-left: 40px;

        }

        .social {
            height: 25%;
        }

.fixed-footer {
   position: fixed;
   display: flex;
   padding-left: 40px;
   left: 0;
   bottom: 0;
   width:100vw;
   background-color: whitesmoke;
   box-shadow: 10px 10px 100px black;
   color: white;
   text-align: left;
}
