<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Fonts */
html, body {
    margin: 0;
    padding: 0;
    font-family: 'Nunito', sans-serif;
}
body {
    background-color: #4f8abc;
    background-image: radial-gradient(circle, #73a2ca, #6798c3, #5b8fbc, #4f85b5, #427cae);
}
.legal {
    background-color: white;
    background-image: none;
    padding: 1em 2em;
}
.hidden {
    display: none;
}
.animate {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.bold {
    font-weight: bold;
}
.nunito {
    font-family: Nunito, sans-serif;;
}
.nunito-light {
    font-family: Nunito, sans-serif;
    font-weight: 200;
}
.overpass {
    font-family: Overpass, sans-serif;
}

.eugene-background {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("https://s3.amazonaws.com/media.orderv.com/orderv_live/static/img/eugene.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: 100vh;
}
.wrapper {
    position: relative;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    padding: 1em;
    margin-bottom: -2.5em;
}
.logo {
    margin: 0 auto;
    padding: 1em;
}
.logo img {
    display: block;
    margin: 0 auto;
    max-width: 15em;
    min-width: 10em;
}
.header-menu {
    display: none;
}
.header-menu a {
    display: inline-block;
    margin: 0 .5em;
    text-decoration: none;
    font-size: 1em;
    color: white;
    text-shadow: rgba(0, 0, 0, 0.3) 0 1px 1px;
}
.header-menu a:hover {
    color: #ff46af;
    text-shadow: none;
}

/* Main Content */
.main-content {
    display: flex;
    flex-flow: column;
    justify-content: center;
    width: 100%;
}
.big-text-wrapper {
    max-width: 90vw;
    margin: 0 auto;
}
.right-content {
    padding: .5em;
    max-width: 100%;
    text-align: left;
}
.right-content h1 {
    color: white;
    font-size: 1.75em;
    text-shadow: rgba(0, 0, 0, 0.3) 0 1px 1px;
}
.iphone-wrapper {
    position: relative;
    max-width: 22em;
    margin: 0 auto;
}
.iphone-frame {
    max-width: 22em;
}
.timer {
    position: absolute;
    top: 15%;
    left: 12%;
    height: 0.8em;
    width: 0;
    max-width: 76%;
    background-color: green;
    z-index: 1;
}
.spotist-mockup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 76%;
    height: 70%;
}
.download-on-app-store {
    margin: 0 auto;
    margin-top: 2em;
    display: flex;
    justify-content: center;
    width: 50%;
}
.download-on-app-store a {
    display: flex;
    justify-content: center;
    align-items: center;
}
.download-on-app-store a img {
    display: block;
    margin: 0 auto;
    width: 100%;
}
/* Footer */
.footer {
    text-align: center;
    padding: 3em;
    padding-top: 1em;
}
.social-media-icons {
    display: block;
    margin: .5em auto;
}
.social-media-icons a {
    display: inline-block;
    margin: .5em .75em;
}
.social-media-icons a:hover &gt; i {
    color: #ff46af !important;
}
.social-media-icons a i {
    color: #FFF;
    font-size: 2em;
}
.footer-link {
    display: inline-block;
    margin: 0.5em 1em;
    text-align: center;
}
.footer-link &gt; a {
    color: #FFF;
    text-decoration: none;
}
.footer-link &gt; a:hover {
    color: #ff46af;
}

/* Breakpoints */
@media (min-width: 700px) {
    /* Header */
    .header {
        margin-bottom: -9em;
    }
    .header-menu {
        display: block;
    }
    .logo {
        margin: 0;
    }
    .logo img {
        max-width: 20em;
        width: 45vw;
    }

    /* Main Content */
    .main-content {
        flex-flow: row nowrap;
        margin-top: -2em;
    }
    .right-content {
        padding-top: 7em;
        max-width: 50%;
    }
}

/* Weird custom query to catch iPhone 5/SE since they are not 16x9 */
@media screen and (device-aspect-ratio: 40/71) {
    .iphone-frame {
        max-width: 20em;
    }
}

.in {
    animation: fill 10s linear;
    background-color: #56a951;
}

/* Animations */
@keyframes fill {
  0% {
    width: 0;
    background-color: #56a951;
  } 33% {
      background-color: #FF9362;
  } 100% {
    width: 76%;
    background-color: #C8364C;
  }
}</pre></body></html>