body {
    background-color: black;
    overflow: hidden;
    font-size: 24px;
    font-family: Arial, Helvetica, sans-serif;
}

#background-video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -20;
}

#background-anim {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -20;
}

.container-fluid {
    height: 100vh;
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    scroll-behavior: smooth;
    overflow-x: hidden;
    z-index: 0;
}

section {
    scroll-snap-align: start;
}

.logo-placeholder {
    position: fixed;
    z-index: 300;
    background-size: contain;
    margin: 1.5em;
    height: 50px;
    width: 50px;
}

.logo-placeholder img {
    transition: transform 2s ease-in-out;
}

.logo-placeholder img:hover {
    transform: rotate(180deg);
}

.action-link {
    font-size: 0.5em;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    margin-top: 15px;
}

.action-link.span {
}

.action-link:hover {
    color: white;
}

.media-body h5 {
    color: white;
    font-weight: normal;
    font-size: 1em;
}

#about p {
    margin-bottom: 0.3em;
}

a, a:hover {
    color: white;
}

#about a, #about a:hover {
    text-decoration: underline;
}


/* CONTENT STUFF */
.jumbotrono {
    margin: 0 6em 1.5em 6em;
    /* max-width: 44rem; */
}

.jumbotrono h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
}

.jumbotrono h2 {
    font-size: 0.8em;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    margin: 7em auto 0.5em auto;
}

.jumbotrono p {
    font-weight: normal;
    font-size: 1em;
    color: white;
    line-height: 1.3;
    margin: 0 auto 1.3em auto;
}

.jumbotrono .form-group {
    width: 40%;
}

.jumbotrono .form-group label {
    font-weight: normal;
    font-size: 1em;
    color: white;
    margin-bottom: 0;
}

.jumbotrono .form-group input#name, .jumbotrono .form-group input#email {
    font-weight: normal;
    font-size: 1em;
    color: white;
    background: none;
    border: none;
    border-bottom: solid 1px white;
    border-radius: 0px;
}

.jumbotrono .form-group.submit-container {
    text-align: right;
    padding: 40px 0;
}

button {
    font-size: 100%;
    font-family: inherit;
    border: 0;
    padding: 0;
    background: none;
    cursor: pointer;
}

button:focus {
    outline: none;
}

div.submit-text {
    font-size: 0.5em;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    border: none;
    background: none;
    padding: 0;
    display: inline-block;
}

button:hover div.submit-text {
    font-size: 0.5em;
}

div.submit-arrow {
    display: inline-block;
    color: white;
    padding: 0;
    width: 50px;
    height: 50px;
    border: 1px solid white;
    text-align: center;
    line-height: 1.8em;
}

button:hover div.submit-arrow {
    border-color: black !important;
    background-color: white;
    color: black !important;
}

span.ask {
    color: red;
    /* font-size: 0.8em; */
}

/* CAROUSEL STUFF */
.carousel-container {
    padding: 0 10vw;
    margin: 0 auto;
}

.carousel-inner {
    overflow: visible;
}

.carousel-control-prev {
    left: -10vw;
    width: 10vw;
}

.carousel-control-next {
    right: -10vw;
    width: 10vw;
}

.carousel-indicators {
    position: static;
    margin-top: 20px;
}

.carousel-item.active > div.row {
    margin: 0;
    padding-top: 5px;
}

/* ARTIST CARDS */
.artist-card{
    margin-bottom: 20px;
}

img.artist-pic {
    width: 100%;
    box-shadow: 5px 5px 0 -1px black, 5px 5px 0 white;
    transition: transform .5s;
}

img.artist-empty {
    width: 100%;
}

img.artist-pic:hover {
    /* border: 1.05px solid white; */
    transform: scale(1.1);
}

.artist-info {
    /* position: absolute;
    bottom: 0;
    left: 0; */
    width: 100%;
    padding-top: 10px;
}

h5.artist-name {
    padding-top: 10px;
    background: black;
    text-align: center;
    margin: 0;
    color: white;
}

p.artist-round {
    background: black;
    margin: 0;
    font-size: .5em !important;
    text-transform: uppercase;
    text-align: center;
    color: white;
}


/* SIDEBAR STUFF */
div.sidebar-toggler {
    position: fixed;
    right: 0;
    text-align: right;
    z-index: 100;
    margin: 1.5em;
}

button.sidebar-toggler:focus {
    outline: none;
}

.sidebar-toggler.navbar-toggler-icon {
    background-image: url("../menu.svg");
}

.sidebar-overlay {
    position: fixed;
    left: 0;
    min-width: 100vw;
    min-height: 100vh;
}

.sidebar-overlay {
    position: fixed;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    padding: 0;
    transition: left 1.5s ease;
    background-color: black;
    background-image: url("../menu_bg.jpg");
    background-position-x: center;
    background-repeat: no-repeat;
    background-size: contain;
    box-shadow: 0 0 100px 100px black;
    z-index: 200;
}

.sidebar-overlay.collapse {
    left: 250vw;
}

.sidebar-overlay.collapse.show {
    left: 0;
}

.sidebar-overlay.collapsing {
    transition: left 1.5s ease;
}

ul.navbar-nav {
    height: 100%;
    justify-content: center;
}

li.nav-item {
    display: block;
    margin: 0 auto;
}

li.nav-item > a.nav-link {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 2em;
    padding: 0;
    line-height: 1.1em;
}

li.nav-item > a.nav-link:hover {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: white;
    color: black !important;
    font-size: 2.1em;
}

button.nav-back {
    text-align: right;
    position: absolute;
    right: 0;
    top: 0;
    margin: 1.5em;
}

/* RULES STUFF */
.jumbotrono.rules-jumbotrono h2 {
    width: 600px;
    /* margin: 0 auto; */
}

.rules-container {
    display: flex;
    justify-content: space-between;
    max-width: 600px;
    margin: 1.5em auto;
}

.rules-container .rules-col {
    width: 48%;
}

.rule-block {
    padding-bottom: 30px;
    text-align: center;
}


span.rule-text {
    margin: 10px 0;
    display: block;
    color: white;
    text-transform: uppercase;
    font-size: .6em;
    text-align: center;
    line-height: 1.1em;
}

span.kerning {
    letter-spacing: 0.1em;
}

span.underline {
    font-size: 0.8em;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: underline;
    text-decoration-color: red;
    letter-spacing: 0.1em;
}

/* CONNECT STUFF */
#connect p {
    text-align: center;
    margin-bottom: 2px;
    font-size: 1.2em;
}

#connect .some-links {
    text-align: center;
}

#connect .some-links img {
    height: 30px;
    margin: 5px;
}

footer {
    position: relative;
    bottom: 100px;
    text-align: center;
    font-size: 0;
}

footer span {
    font-size: 1.2rem;
    display: inline-block;
    padding: 0 10px;
    color: white;
    border-right: 1px solid white;
}

footer span:last-child {
    border-right: none;
}


/* MOBILE FIXES */
@media only screen and (max-width: 600px) {
    .jumbotrono {
      margin: 0 20px;
    }

    .jumbotrono .form-group {
        width: 100%;
    }

    .jumbotrono h1 {
        font-size: 2rem;
    }

    .jumbotrono h2 {
        font-size: 1.1rem;
        margin-top: 5em;
    }

    .media-body h5 {
    font-size: 1.1rem;
    }
    
    .jumbotrono p {
    font-size: 1.1rem;
    line-height: 1.2rem;
    max-width: 20em;
    }

    .jumbotrono .rule-pic {
        max-height: 60px;
        max-width: 60px;
    }

    .jumbotrono .rules-container {
        margin-top: 10px;
    }

    .jumbotrono span.rule-text {
        font-size: 0.6em;
        line-height: 1.1em;
    }

    .jumbotrono .rule-block {
        padding-bottom: 10px;
    }

    .carousel-container {
        padding: 0 15px;
    }

    .carousel-control-prev .submit-arrow, 
    .carousel-control-next .submit-arrow {
        border: none;
        position: relative;
        bottom: 30px;
    }
    
    .carousel-control-prev .submit-arrow {
        left: 10px;
    }

    .carousel-control-next .submit-arrow {
        right: 10px;
    }

    .carousel-control-prev .submit-arrow:hover, 
    .carousel-control-next .submit-arrow:hover {
        background-color: transparent !important;
        color: white !important;
    }

    .sidebar-overlay {
        background-size: cover;
    }
}
@media only screen and (max-width: 600px) and (max-height: 400px) {
    .h-100 {
        height: auto;
    }
}


@media (min-width: 1200px) {  
  .landing {
        position: absolute;
        left: 15%;
    }  
}