              /*dark blue #0f0041
                    hover #150058
                lavender #E5BCF7
                    hover #d394ee
                magenta #76003F 
                emerald #006833
                teal #005F64   */

body{
    color:#E5BCF7;
    background-color: #0f0041;
}
#logo{
    width: 30%;
    display: block;
    margin-left:auto;
    margin-right: auto;

}
/* header{
    margin:0;
    padding: -2000;
}  idk; this isnt working*/
.menu-wrap{
    height: 3em;
    background-color:#0f0041;
    padding: 10px 15px;
    position: fixed;
    width: 100%;
} */
.menu-icon{
    font-size: 2em;
    color: #fff; 
}


                        /*navigation*/
nav{
        position: absolute; /* this messes things up so idk if ill use it */
        background-color: #0f0041;
        padding: 5px;
        top: 3.5em;
        width: 100;
    }
    nav ul {
        text-align: center;
        list-style: none;
        max-height: 0em;
        overflow: hidden;
        transition: max-height 0.5s;
    }
    nav ul li a{
        display: block;
        padding: .75em 1.75em;
        text-decoration: none;
    }
    nav ul li{
        font: bold;
        font-size: 20px;
        font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
        display: inline-block;
        position: relative;
        padding: 15px 20px;
        cursor:pointer;
    }
    nav ul li:hover, nav ul li a:focus{
        background: #150058;
    }
    nav ul li ul {
        padding:0;
        position: absolute;
        top: 48px;
        left: -2000px;
        width: 150px;
        margin-left: 0px;
        text-align: left;
    }
    nav ul li ul li {
        background: #0f0041;
        display: block;
        color:#E5BCF7;
    }
    nav ul li ul li:hover{
        background: #150058;
    }
    nav ul li:hover ul{
        display: block;
        left: 0px;
    }
    #checkbox { display: none;}
    #checkbox:checked ~ nav ul {
        max-height: 11em;
    }
h2{
    text-align: center;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif
}
@media (min-width: 768px) {
    .menu-icon {
        display: none;
    }
    nav{
        position: relative;
        top: -1em;
        color: whtie;
    }
    nav ul {
        max-height: 0.75em;
        padding: 15px 0;
    }
    nav ul li {
        display: inline-block;
        padding-left: 1em;
    }
}
.wrapper{
    display: grid;
    column-gap: 30px;
    row-gap: 20px;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    margin-left: 10%;
    margin-right: 10%;
}
/* .wrapper > div{ 
    background-color: red;
    } */
.photo{
    max-width: 100%;
    max-height: 100%;
    border: #E5BCF7;
    border-width: 3px;
    border-style: solid;
}

/* .photo:hover .overlay{
    opacity:1;
}
.overlay{
    position:absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color:#150058;
}
.desc{
    color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
} */
.links{
    list-style-type:none;
    display: flex;
    justify-content: center;
}
.links a{
    color:#E5BCF7;
    padding: 20px;
}
.links a:hover{
    color:#d394ee;
}
footer a{
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}