* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    outline: none;
    margin: 0;
    padding: 0;
}

body {
    text-align: left;
    font-family: serif;
    background-color: white;
    color: black;
    font-size: 22px;
    letter-spacing: 1.5px;
    -webkit-text-stroke: 0.5px;
    -moz-text-stroke: 0.5px;
    line-height: 1.22;
}

.big-type {
    text-align: center;
    font-family: 'Arial', sans-serif;
    font-size: 60px;
    letter-spacing: 1.5px;
    -webkit-text-stroke: 0.3px;
    -moz-text-stroke: 0.3px;
    line-height: 1.22;
}

.small-type {
    text-align: center;
    font-family: 'Arial', sans-serif;
    font-size: 22px;
    letter-spacing: 1.5px;
    -webkit-text-stroke: 0.5px;
    -moz-text-stroke: 0.5px;
    line-height: 1.22;
}

.purple-text {
    color: #6600c2;
}

.white-text {
    color: white;
}

.purple-bg {
    background-color: #6600c2;
}

.black-bg {
    background-color: black;
}

.white-bg {
    background-color: white;
}

.center {
    text-align: center;
}

.gray {
    color: silver;
}

.super {
    vertical-align: super;
    font-size: 50%;
}

.opening {
  /* background-image: url("assets/luiza-4.png"); */
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.timer {
    /* background-image: url("assets/phil.png"); */
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.main-center {
    position: fixed;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: top;
    width: 100vw;
    height: 100vh;
    padding: 20px;
    left: 0;
    top: 0;
}

.finale {
    position: fixed;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: top;
    width: 100vw;
    height: 100vh;
    padding: 0;
    left: 0;
    top: 0;
}

.main-clock{
    position: fixed;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: top;
    width: 100vw;
    height: auto;
    padding: 20px;
    left: 0;
    top: 0;
    z-index: 30;
}

.spacer {
    display: flex;
    background-color: white;
    flex-direction: column;
    text-align: center;
    align-items: top;
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
}

.bar {
    width: 30vw;
    height: 4px;
    border-radius: 5px;
    margin-top: 78vh;
    background-color: #6600c2;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.bar-white {
    width: 30vw;
    height: 4px;
    border-radius: 5px;
    margin-top: 78vh;
    background-color: white;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.main-left {
    position: fixed;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: top;
    width: 100vw;
    height: 100vh;
    padding: 20px;
    left: 0;
    top: 0;
    overflow: scroll;
}

.header {
    font-size: 13px;
    letter-spacing: 2px;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-align: center;
    position: fixed;
    top: 21px;
    z-index: 3;
}

.footer {
    font-size: 13px;
    letter-spacing: 2px;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-align: center;
    position: fixed;
    bottom: 21px;
    z-index: 3;
}

.bullet {
    font-family: 'Inter Extra Bold';
    vertical-align: text-bottom;
}

.bullet-text {
    font-family: 'Inter Extra Bold';
    vertical-align: text-bottom;
}

.underline {
    border-bottom: #6600c2 4px solid;
    cursor: pointer;
    display: inline-block;
}

.underline-white {
    border-bottom: white 4px solid;
    cursor: pointer;
    display: inline-block;
}

.fadetop {
    position: fixed;
    width: 100vw;
    height: 20px;
    left: 0;
    top: 45px;
    background: -webkit-linear-gradient(rgba(255, 255, 255, 1) 30%,
            rgba(255, 255, 255, 0) 100%);
    background-image: -moz-linear-gradient(rgba(255, 255, 255, 1) 30%,
            rgba(255, 255, 255, 0) 100%);
    background-image: -o-linear-gradient(rgba(255, 255, 255, 1) 30%,
            rgba(255, 255, 255, 0) 100%);
    background-image: linear-gradient(rgba(255, 255, 255, 1) 30%,
            rgba(255, 255, 255, 0) 100%);
    background-image: -ms-linear-gradient(rgba(255, 255, 255, 1) 30%,
            rgba(255, 255, 255, 0) 100%);
    opacity: 1;
    z-index: 2;
}

.fadebottom {
    position: fixed;
    width: 100vw;
    height: 20px;
    left: 0;
    bottom: 45px;
    background: -webkit-linear-gradient(rgba(255, 255, 255, 1) 30%,
            rgba(255, 255, 255, 0) 100%);
    background-image: -moz-linear-gradient(rgba(255, 255, 255, 1) 30%,
            rgba(255, 255, 255, 0) 100%);
    background-image: -o-linear-gradient(rgba(255, 255, 255, 1) 30%,
            rgba(255, 255, 255, 0) 100%);
    background-image: linear-gradient(rgba(255, 255, 255, 1) 30%,
            rgba(255, 255, 255, 0) 100%);
    background-image: -ms-linear-gradient(rgba(255, 255, 255, 1) 30%,
            rgba(255, 255, 255, 0) 100%);
    -webkit-transform: scaleY(-1);
    transform: scaleY(-1);
    opacity: 1;
    z-index: 2;
}

.white-space-top {
    position: fixed;
    width: 100vw;
    height: 46px;
    left: 0;
    top: 0;
    background-color: white;
    z-index: 1;
}

.white-space-bottom {
    position: fixed;
    width: 100vw;
    height: 46px;
    left: 0;
    bottom: 0;
    background-color: white;
    z-index: 1;
}

.video-box {
    position: fixed;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    padding: 0;
    left: 0;
    top: 0;
    background-color: black;
}

video {
    width: 100%;
    padding: 0;
}

.web {
    display: none;
}

.set-2,
.set-3,
.notes,
.intro,
.act-1,
.intermission-1,
.timer,
.intermission-2,
.act-2,
.finale,
.end,
.after,
.closing {
    display: none;
}

label, #time {
    -webkit-text-stroke: 1.3px;
    -moz-text-stroke: 1.3px;
}

#time {
    /* display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center; */
    position: fixed;
    left: 0;
    top: 77px;
    width: 100%;
    height: 100%;
    padding: 20px;
    z-index: 10;
}

@media only screen and (min-device-width: 375px) 
and (max-device-width: 812px) 
and (-webkit-min-device-pixel-ratio: 3) {
    .mobile {
        display: block;
    }

    .web {
        display: none;
    }
}

/* ----------- Non-Retina Screens ----------- */
@media screen 
  and (min-device-width: 1200px) 
  and (max-device-width: 1600px)
  and (-webkit-min-device-pixel-ratio: 1) { 
    .mobile {
        display: none;
    }

    .web {
        display: block;
    }
}

/* ----------- Retina Screens ----------- */
@media screen 
  and (min-device-width: 1200px) 
  and (max-device-width: 1600px) 
  and (-webkit-min-device-pixel-ratio: 2)
  and (min-resolution: 192dpi) { 
    .mobile {
        display: none;
    }

    .web {
        display: block;
    }
}

/* ----------- iPhone 4 and 4S ----------- */

/* Portrait and Landscape */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 480px)
  and (-webkit-min-device-pixel-ratio: 2) {
    .mobile {
        display: block;
    }

    .web {
        display: none;
    }
}

/* Portrait */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 480px)
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: portrait) {
    .mobile {
        display: block;
    }

    .web {
        display: none;
    }
}

/* Landscape */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 480px)
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: landscape) {
    .mobile {
        display: block;
    }

    .web {
        display: none;
    }
}

/* ----------- iPhone 5, 5S, 5C and 5SE ----------- */

/* Portrait and Landscape */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 568px)
  and (-webkit-min-device-pixel-ratio: 2) {
    .mobile {
        display: block;
    }

    .web {
        display: none;
    }
}

/* Portrait */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 568px)
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: portrait) {
    .mobile {
        display: block;
    }

    .web {
        display: none;
    }
}

/* Landscape */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 568px)
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: landscape) {
    .mobile {
        display: block;
    }

    .web {
        display: none;
    }

}

/* ----------- iPhone 6, 6S, 7 and 8 ----------- */

/* Portrait and Landscape */
@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 667px) 
  and (-webkit-min-device-pixel-ratio: 2) { 
    .mobile {
        display: block;
    }

    .web {
        display: none;
    }

}

/* Portrait */
@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 667px) 
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: portrait) { 
    .mobile {
        display: block;
    }

    .web {
        display: none;
    }

}

/* Landscape */
@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 667px) 
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: landscape) { 
    .mobile {
        display: block;
    }

    .web {
        display: none;
    }

}

/* ----------- iPhone 6+, 7+ and 8+ ----------- */

/* Portrait and Landscape */
@media only screen 
  and (min-device-width: 414px) 
  and (max-device-width: 736px) 
  and (-webkit-min-device-pixel-ratio: 3) { 
    .mobile {
        display: block;
    }

    .web {
        display: none;
    }

}

/* Portrait */
@media only screen 
  and (min-device-width: 414px) 
  and (max-device-width: 736px) 
  and (-webkit-min-device-pixel-ratio: 3)
  and (orientation: portrait) { 
    .mobile {
        display: block;
    }

    .web {
        display: none;
    }

}

/* Landscape */
@media only screen 
  and (min-device-width: 414px) 
  and (max-device-width: 736px) 
  and (-webkit-min-device-pixel-ratio: 3)
  and (orientation: landscape) { 
    .mobile {
        display: block;
    }

    .web {
        display: none;
    }

}

/* ----------- iPhone X ----------- */

/* Portrait and Landscape */
@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 812px) 
  and (-webkit-min-device-pixel-ratio: 3) { 
    .mobile {
        display: block;
    }

    .web {
        display: none;
    }

}

/* Portrait */
@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 812px) 
  and (-webkit-min-device-pixel-ratio: 3)
  and (orientation: portrait) { 
    .mobile {
        display: block;
    }

    .web {
        display: none;
    }

}

/* Landscape */
@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 812px) 
  and (-webkit-min-device-pixel-ratio: 3)
  and (orientation: landscape) { 
    .mobile {
        display: block;
    }

    .web {
        display: none;
    }
}

/* ----------- Galaxy S3 ----------- */

/* Portrait and Landscape */
@media screen 
  and (device-width: 360px) 
  and (device-height: 640px) 
  and (-webkit-device-pixel-ratio: 2) {
    .mobile {
        display: block;
    }

    .web {
        display: none;
    }
}

/* Portrait */
@media screen 
  and (device-width: 320px) 
  and (device-height: 640px) 
  and (-webkit-device-pixel-ratio: 2) 
  and (orientation: portrait) {
    .mobile {
        display: block;
    }

    .web {
        display: none;
    }
}

/* Landscape */
@media screen 
  and (device-width: 320px) 
  and (device-height: 640px) 
  and (-webkit-device-pixel-ratio: 2) 
  and (orientation: landscape) {
    .mobile {
        display: block;
    }

    .web {
        display: none;
    }
}

/* ----------- Galaxy S4, S5 and Note 3 ----------- */

/* Portrait and Landscape */
@media screen 
  and (device-width: 320px) 
  and (device-height: 640px) 
  and (-webkit-device-pixel-ratio: 3) {
    .mobile {
        display: block;
    }

    .web {
        display: none;
    }
}

/* Portrait */
@media screen 
  and (device-width: 320px) 
  and (device-height: 640px) 
  and (-webkit-device-pixel-ratio: 3) 
  and (orientation: portrait) {
    .mobile {
        display: block;
    }

    .web {
        display: none;
    }
}

/* Landscape */
@media screen 
  and (device-width: 320px) 
  and (device-height: 640px) 
  and (-webkit-device-pixel-ratio: 3) 
  and (orientation: landscape) {
    .mobile {
        display: block;
    }

    .web {
        display: none;
    }
}

/* ----------- Galaxy S6 ----------- */

/* Portrait and Landscape */
@media screen 
  and (device-width: 360px) 
  and (device-height: 640px) 
  and (-webkit-device-pixel-ratio: 4) {
    .mobile {
        display: block;
    }

    .web {
        display: none;
    }
}

/* Portrait */
@media screen 
  and (device-width: 360px) 
  and (device-height: 640px) 
  and (-webkit-device-pixel-ratio: 4) 
  and (orientation: portrait) {
    .mobile {
        display: block;
    }

    .web {
        display: none;
    }
}

/* Landscape */
@media screen 
  and (device-width: 360px) 
  and (device-height: 640px) 
  and (-webkit-device-pixel-ratio: 4) 
  and (orientation: landscape) {
    .mobile {
        display: block;
    }

    .web {
        display: none;
    }
}

/* ----------- Google Pixel ----------- */

/* Portrait and Landscape */
@media screen 
  and (device-width: 360px) 
  and (device-height: 640px) 
  and (-webkit-device-pixel-ratio: 3) {
    .mobile {
        display: block;
    }

    .web {
        display: none;
    }
}

/* Portrait */
@media screen 
  and (device-width: 360px) 
  and (device-height: 640px) 
  and (-webkit-device-pixel-ratio: 3) 
  and (orientation: portrait) {
    .mobile {
        display: block;
    }

    .web {
        display: none;
    }
}

/* Landscape */
@media screen 
  and (device-width: 360px) 
  and (device-height: 640px) 
  and (-webkit-device-pixel-ratio: 3) 
  and (orientation: landscape) {
    .mobile {
        display: block;
    }

    .web {
        display: none;
    }
}

/* ----------- Google Pixel XL ----------- */

/* Portrait and Landscape */
@media screen 
  and (device-width: 360px) 
  and (device-height: 640px) 
  and (-webkit-device-pixel-ratio: 4) {
    .mobile {
        display: block;
    }

    .web {
        display: none;
    }
}

/* Portrait */
@media screen 
  and (device-width: 360px) 
  and (device-height: 640px) 
  and (-webkit-device-pixel-ratio: 4) 
  and (orientation: portrait) {
    .mobile {
        display: block;
    }

    .web {
        display: none;
    }
}

/* Landscape */
@media screen 
  and (device-width: 360px) 
  and (device-height: 640px) 
  and (-webkit-device-pixel-ratio: 4) 
  and (orientation: landscape) {
    .mobile {
        display: block;
    }

    .web {
        display: none;
    }
}

/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/

@media (min-width: 1281px) {
  
    .mobile {
        display: none;
    }

    .web {
        display: block;
    }
  
}

/* 
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/

@media (min-width: 1025px) and (max-width: 1280px) {
  
    .mobile {
        display: none;
    }

    .web {
        display: block;
    }
  
}

/* ----------- iPad 1, 2, Mini and Air ----------- */

/* Portrait and Landscape */
@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px) 
  and (-webkit-min-device-pixel-ratio: 1) {
    .mobile {
        display: none;
    }

    .web {
        display: block;
    }

}

/* Portrait */
@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px) 
  and (orientation: portrait) 
  and (-webkit-min-device-pixel-ratio: 1) {
    .mobile {
        display: none;
    }

    .web {
        display: block;
    }

}

/* Landscape */
@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px) 
  and (orientation: landscape) 
  and (-webkit-min-device-pixel-ratio: 1) {
    .mobile {
        display: none;
    }

    .web {
        display: block;
    }

}

/* ----------- iPad 3, 4 and Pro 9.7" ----------- */

/* Portrait and Landscape */
@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px) 
  and (-webkit-min-device-pixel-ratio: 2) {
    .mobile {
        display: none;
    }

    .web {
        display: block;
    }

}

/* Portrait */
@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px) 
  and (orientation: portrait) 
  and (-webkit-min-device-pixel-ratio: 2) {
    .mobile {
        display: none;
    }

    .web {
        display: block;
    }

}

/* Landscape */
@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px) 
  and (orientation: landscape) 
  and (-webkit-min-device-pixel-ratio: 2) {
    .mobile {
        display: none;
    }

    .web {
        display: block;
    }

}

/* ----------- iPad Pro 10.5" ----------- */

/* Portrait and Landscape */
@media only screen 
  and (min-device-width: 834px) 
  and (max-device-width: 1112px)
  and (-webkit-min-device-pixel-ratio: 2) {
    .mobile {
        display: none;
    }

    .web {
        display: block;
    }

}

/* Portrait */
/* Declare the same value for min- and max-width to avoid colliding with desktops */
/* Source: https://medium.com/connect-the-dots/css-media-queries-for-ipad-pro-8cad10e17106*/
@media only screen 
  and (min-device-width: 834px) 
  and (max-device-width: 834px) 
  and (orientation: portrait) 
  and (-webkit-min-device-pixel-ratio: 2) {
    .mobile {
        display: none;
    }

    .web {
        display: block;
    }

}

/* Landscape */
/* Declare the same value for min- and max-width to avoid colliding with desktops */
/* Source: https://medium.com/connect-the-dots/css-media-queries-for-ipad-pro-8cad10e17106*/
@media only screen 
  and (min-device-width: 1112px) 
  and (max-device-width: 1112px) 
  and (orientation: landscape) 
  and (-webkit-min-device-pixel-ratio: 2) {
    .mobile {
        display: none;
    }

    .web {
        display: block;
    }

}

/* ----------- iPad Pro 12.9" ----------- */

/* Portrait and Landscape */
@media only screen 
  and (min-device-width: 1024px) 
  and (max-device-width: 1366px)
  and (-webkit-min-device-pixel-ratio: 2) {
    .mobile {
        display: none;
    }

    .web {
        display: block;
    }

}

/* Portrait */
/* Declare the same value for min- and max-width to avoid colliding with desktops */
/* Source: https://medium.com/connect-the-dots/css-media-queries-for-ipad-pro-8cad10e17106*/
@media only screen 
  and (min-device-width: 1024px) 
  and (max-device-width: 1024px) 
  and (orientation: portrait) 
  and (-webkit-min-device-pixel-ratio: 2) {
    .mobile {
        display: none;
    }

    .web {
        display: block;
    }

}

/* Landscape */
/* Declare the same value for min- and max-width to avoid colliding with desktops */
/* Source: https://medium.com/connect-the-dots/css-media-queries-for-ipad-pro-8cad10e17106*/
@media only screen 
  and (min-device-width: 1366px) 
  and (max-device-width: 1366px) 
  and (orientation: landscape) 
  and (-webkit-min-device-pixel-ratio: 2) {
    .mobile {
        display: none;
    }

    .web {
        display: block;
    }

}