* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

#header-bar {
    display: block;
    align-items: center;
    height: 20vw;
}

#navigation {
    position: absolute;
    float: left;
    top: 20%;
    left: 3%;
}

#navlogo {
    display: flex;
    justify-content: center;
    height: 100%;
}

#navlogo img {
    height: 100%;
    filter: drop-shadow(0 0 10px #fff);
}

.front {
    height: 40vw; margin-top: 5%;
    filter: drop-shadow(0 0 7px #fff);
}


/* Page backgrounds */

#shows {
    background: url(/imgs/shows.JPG);
    background-size: 160%;
    background-position: 60% 0;
}

#info {
    background: url(/imgs/info.JPG);
    background-size: cover;
}

#video {
    background: url(/imgs/video.JPG);
    background-size: cover;
}

#index {
    background: url(/imgs/21040008.JPG);
    background-size: 100%;
    background-position: center 0;
}

/* Navigation */

.navigation-text {
    position: relative;
    display: inline;
    text-align: center;
    font-size: 1.5vw;
}

.navigation-text a {
    padding: 15px;
    margin: 0;
    color: white;
    text-decoration: none;
    border: 3px solid white;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
}

.navigation-text a:hover {
    color: black;
}

.navigation-text p {
    margin: 2vw;
}

/* Image Grid */

#img-grid {
    position: static;
    display: inline;
    gap: 20px;
    width: 80%;
    margin: auto;
    padding: 15px;
}

#img-grid img {
    width: 300px;
    height: 300px;
    object-fit: none;
}

/* Main Content */



#email-gif {
    width: 150px;
    margin-top: -40%;
    margin-left: -40%;
    rotate: -15deg;
}

#presave-container {
    position: absolute;
    top: 5%;
    right: 3%;
    width: 30%;
    max-width: 200px;
}

#presave {
    position: relative;
    height: 100%;
}

.presave-bg {
    position: absolute;
    width: 100%;
    height: 90%;
    z-index: -1;
    border-radius: 200px;
    filter: blur(20px);
    background-color: rgb(255 255 255 / 20%);
}

#presave img {
    width: 90%;
    padding: 5%;
}

.hand-text {
    position: relative;
    width: 100%;
    filter: drop-shadow(0 0 7px #000);
}

#page {
    text-align: center;
}

#text {
    position: relative;
    top: -1vw;
    left: 3vw;
    width: 70vw;
    margin: auto;
    padding: 15px;
    color: white;
    font-size: 14px;
    text-align: left;
    border: 3px solid white;
    background-color: rgba(0, 0, 0, 0.7);
}

#text p {
    margin-top: 10px;
}

#socials {
    display: flex;
    position: absolute;
    padding-left: 1%;
    padding-right: 1%;
    right: 2%;
    bottom: 2%;
    font-size: 20px;
    color: red;
    border: 1px solid red;
    border-radius: 100px;
}

.icon {
    margin: 5px;
    width: 30px;
}

/* Headings */

h1,
h2,
h3 {
    font-size: inherit;
}

h1 {
    display: inline;
    margin: 0 10px 0 0;
    text-transform: uppercase;
}

h2 {
    margin: 0;
    color: beige;
}

h3 {
    display: inline;
}

h3 a {
    color: red;
}

/* Media */

iframe {
    width: 60vw;
    height: 30vw;
}

/* Popup */

.popup {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.popup .popuptext {
    visibility: hidden;
    position: fixed;
    width: 40%;
    height: 40%;
    margin-top: 20px;
    color: #fff;
    text-align: center;
    align-content: center;
    border-radius: 6px;
    z-index: 1;
    background: url("imgs/rain-cloud.png") center / contain no-repeat;
}

.popup .popuptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border: 5px solid transparent;
    border-top-color: #555;
}

.popup .show {
    visibility: visible;
    animation: fadeIn 1s;
}

.popuptext p {
    position: relative;
    top: -25px;
    color: white;
    font-size: 2vw;
    font-weight: bold;
}

/* Responsive */

@media screen and (max-width: 800px) {

    .front {
    height: 50vw;
    position: relative;
    left: auto;
    filter: drop-shadow(0 0 7px #fff);
}

    #index {
        background-size: 400%;
    }

    #text {
        right: -10vw;
        left: auto;
        width: 60vw;
        font-size: 12px;
    }

    .header-bar {
        height: 2300px;
    }

    #navigation {
        left: 3%;
    }

    .navigation-text {
        font-size: 14px;
    }

    .navigation-text a {
        padding: 10px;
        margin-top: 20px;
    }

    .navigation-text p {
        margin-top: 20px;
    }

    iframe {
        width: 50vw;
        height: 30vw;
    }

    .popup {
        margin-top: 30px;
    }

    .popup .popuptext {
        width: 50%;
        height: 40%;
        margin-top: -200px;
        margin-left: 120px;
    }

    .popuptext p {
        top: -45px;
        font-size: 4vw;
    }
}