

body {
    overflow: scroll;
    font-size: 1.5em;
    font-family: 'Reenie Beanie', cursive;
    background: linear-gradient(180deg, #5BB2CD 0%, #CDC25B 100%) no-repeat fixed;
    /* background-repeat: no-repeat;
    background-attachment: fixed; */
    font-style: normal;
    font-weight: 200;
    -webkit-font-smoothing: antialiased;
    margin: 0;
}

nav {
    position: fixed;
    top: 48%;
    cursor: pointer;
}

nav.next {
    right: 10vw;
    text-align: left;
}

nav.prev {
    left: 10vw;
    text-align: right;
}

h2 {
    font-size: 1em;
}

header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 1em;
}

.banner.desktop{
    margin-bottom: 1em;
}

.logo {
    margin-left: 2vw;
    margin-right: 2.4vw;
}

.header-text-left {
    width: 40vw;
    text-align: right;
}

.header-text-right {
    width: 40vw;
    text-align: left;
}

.banner {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    
}

.dynamic-banner>a {
    margin: 1em 4vw 1vw 4vw;
}


.dynamic-banner>nav{
    position: static;
    display: none;
}

.dynamic-banner>nav.prev{
    margin-right: 7vw;
}

.dynamic-banner>nav.next{
    margin-left: 7vw;
}

.dynamic-banner{
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    transition: top 0.3s;
}

.initial-position{
    bottom: 0px;
}

.art-container {
    display: flex;
    flex-direction: column;
    width: 90vw;
    max-width: 640px;
    background-color: white;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    transition: box-shadow 0.7s;
    padding-right: -10px;
}

.active{
    box-shadow: 20px 20px 0px #000000;
}

.art-title {
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    height: 3em;
}

.art-content {
    display: inline-block;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    border-radius: 4px;
    overflow-y: scroll;
    box-sizing: border-box;
    /* pointer-events: none; */
    max-width: 90%;
}

iframe{
    margin-right: auto !important;
    margin-left: auto !important;
}

a{
    text-decoration: none;
    color: black;
}
a:visited{
    text-decoration: none;
    color: black;
}

.art-subtitle {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-left: 5%;
    padding-right: 2%;
    margin-top: -10px;
    min-height: 2em;
}

.art-subtitle>p {
    margin: 0.3em;
}

.artist{
    cursor: pointer;
}

.swipe-icon{
    position: relative;
    display: none;
    margin-top: -10px;
    margin-right: 20px;
    margin-bottom: 14px;
}

.mobile{
    display: none;
}

@media only screen and (max-width: 1200px) {
    nav.next {
        right: 5vw;
    }
    nav.prev {
        left: 5vw;
    }
}

@media only screen and (max-width: 1000px) {
    nav{
        top:54%;
    }
    nav.next {
        right: 5vw;
    }
    nav.next>p{
        display: none;
    }
    nav.prev {
        left: 5vw;
    }
    nav.prev>p{
        display: none;
    }
}

@media only screen and (max-width: 850px) {
    nav.next {
        right: 3vw;
    }

    nav.prev {
        left: 3vw;
    }
}

@media only screen and (max-width: 810px) {
    nav{
        display: none;
    }

    .dynamic-banner>nav{
        display: block;
    }

    .art-container{
        margin-left: auto;
        margin-right: auto;
    }
}

@media only screen and (max-width: 500px) {
    body{
        font-size: 1.3em;
    }


    nav{
        display: none;
    }

    .dynamic-banner>nav{
        display: none;
    }

    .active{
        box-shadow: 10px 10px 0px #000000;
    }

    /* .mobile{
        display: block;
    }

    .desktop{
        display: none;
    } */
    .swipe-icon{
        display: inline-block;
    }
}

@media only screen and (max-width: 321px) {
    body{
        font-size: 1em;
    }
}