/* Derek's CSS */

* {
    margin: 0;
    box-sizing: border-box;
}

#page-wrapper {
    width: 100%;
    height: 100%;

    font-size: calc(2px + 2vh);

    font-family: Montserrat, sans-serif;
    text-align: center;

    background-color: darkblue;
    color: #E0ECFF;
}

body {
    min-height: 100%;
    background-color: #020824;
}

header {
    width: 100%;

    padding: 10%;

    font-size: calc(10px + 2vh);
}

nav {
    /* background-color: #1E2E4E; */
    background-color: #191414;
}

/* Edison's */
nav ul {
    width: 65%;
    margin: auto;

    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;

    list-style: none;
    padding: 1%;
}

nav a {
    color: #E0ECFF;
    text-decoration: none;

    font-size: calc(10px + 2vw);
}

nav a:hover {
    background-color: #6FA3EF;
    border-radius: 20px;
}
/* end of Edison's */


#page-intro h2 {
    padding-top: 5%;
}


#gallery {
    width: 95%;
    height: 100vh;
    margin: 5% auto;

    position: relative;

    background-color: #052f6c;
    border: 5px solid #1e4378;

    display: flex;
    flex-direction: row;
}


#box1,
#box2,
#box3 {
    position: absolute;
    width: 30%;
    height: 80%;
    border: 5px solid #4A678E;
    margin: 5% 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


#box1 {
    left: 3%;
    background-image: url("../src/images/sad-images/littlesad.jpg");
}


#box2 {
    left: 35%;
    background-image: url("../src/images/sad-images/sadder.jpg");
}


#box3 {
    left: 67%;
    background-image: url("../src/images/sad-images/toosad.jpg");
}


#box1:hover {
    z-index: 4;
}

#box2:hover {
    z-index: 3;
}

#box3:hover {
    z-index: 2;
}




.text {
    text-align: center;
    opacity: 0;
    transition: opacity 2s;
    background-color: lightblue;
    height: 100%;
    width: 100%;
    padding-top: 25%;
    font-size: calc(2px + 2vw);
    color: #0E1A40;
}


#box1:hover .text,
#box2:hover .text,
#box3:hover .text {
    opacity: 1;
}




#box1 a,
#box2 a,
#box3 a {
    position: absolute;
    bottom: 10%;
    left: 0;
    width: 100%;
    text-align: center;
    opacity: 0;
    transition: opacity 2s;
    color: #003B8E;
    font-size: calc(2px + 1.8vw);
    text-decoration: none;
    background-color: #E0ECFF;
}


#box1:hover a,
#box2:hover a,
#box3:hover a {
    opacity: 1;
}


/* Playlists */

#playlists {
    margin: auto;

    display: flex;
    flex-direction: column;
}

.playlist {
    display: none;       /* hidden by default */
    /* background-color: #020b34; */
}


#playlist-1,
#playlist-2,
#playlist-3 {
    height: 100vh;
}


#playlist-1:target,
#playlist-2:target,
#playlist-3:target {
    display: block;
}


.playlist-message {
    text-align: center;
    font-size: calc(4px + 1.5vw);
    margin: 2% 0;
    color: #E0ECFF;
}


.playlist iframe {
    width: 70%;
    height: 70vh;
    border-radius: 12px;
    border: none;
}


footer {
    /* background-color: #1E2E4E; */
    background-color: #333;
    color: #E0ECFF;
    text-align: center;
    padding: 2%;
    bottom: 0;
    left: 0;
    font-size: calc(1px + .8vw);
}

footer a {
    color: lightgrey;
    text-decoration: none;
}

/* Edison's
/* basic font */
@font-face {
    font-family: 'Montserrat';
    src: url('../src/fonts/home-fonts/Montserrat/static/Montserrat-Light.ttf') format('truetype');
}