@font-face {
    font-family: Raleway;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/raleway/v29/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVs9pbCIPrEVIT9d0c8.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Work Sans';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/worksans/v19/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K-DQBi8Jpo3ZKyHaQQ.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.no-js body { background-color: #c6fa1b; }

.social {
    position: fixed;
    top: 5px;
    right: 5px;
    list-style-type: none;
    margin: 0;
    padding: 0;
    opacity: 0;
    transition: opacity .85s ease;
}
.social.visible { opacity: 1; }
.social li {
    display: inline-block;
    margin-left: 7px;
    border: 1px solid rgba(255, 255, 255, .65);
    border-radius: 100%;
    transition: border-color .3s ease, background-color .3s ease;
}
.social li:hover {
    color: rgba(255, 255, 255, 1);
    background-color: rgba(255, 255, 255, .65);
}
.social li a {
    display: block;
    color: rgba(255, 255, 255, .65);
    font-size: 1.4em;
    padding: 10px;
    transition: color .3s ease;
}
.social li a:hover { color: rgba(255, 255, 255, 1); }

.no-js .heading { color: #0f3dfe; }

.container {
    width: 70%;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}
.no-js .container { opacity: 1; }

.heading {
    justify-content: center;
    font-family: 'Work Sans', sans-serif;
    text-transform: uppercase;
    font-size: clamp(1rem, 15vw, 32rem);
    line-height: .8em;
    font-weight: 700;
    letter-spacing: -.04em;
    overflow-wrap: normal;
}

h1 {
    display: inline-block;
    text-align: left;
    font-size: 10vw;
    line-height: 1;
    margin: 0;
}
.no-js #h1 { display: none; }
h1 span:first-child { display: inline; }

.ic {
    display: inline-block;
    width: .25em;
    height: .7em;
    background-color: orange;
    margin-left: .12em;
    vertical-align: baseline;
    animation: blink 1s steps(1) infinite;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

#links {
    display: flex;
    align-items: center;
    margin-top: .4em;
    opacity: 0;
    transition: opacity .5s ease-in-out;
    font-family: Raleway, HelveticaNeue, "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-shadow: 0 0 4px rgba(0, 0, 0, .55);
    font-size: clamp(1rem, 5vw, 2rem);
}
.no-js #links { opacity: 1; }
#links span { color: #fff; }
.play   { position: relative; margin-right: .4em; }
.attend { position: relative; margin-left:  .4em; }

.glitch {
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 2px;
    white-space: nowrap;
    position: relative;
    cursor: pointer;
}
.glitch::after, .glitch::before {
    display: block;
    content: attr(data-glitch);
    text-transform: uppercase;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    text-shadow: none;
}
.glitch::after  { color: #f0f; z-index: -2; }
.glitch::before { color: #0ff; z-index: -1; }
.glitch:hover { color: #fff; text-shadow: none; }
.glitch:hover::after, .glitch:hover::before { opacity: .8; }
.glitch:hover::before {
    animation: glitch .3s cubic-bezier(.25, .46, .45, .94) both 5;
    animation-iteration-count: infinite;
}
.glitch:hover::after {
    animation: glitch .3s cubic-bezier(.25, .46, .45, .94) reverse both 5;
    animation-iteration-count: infinite;
}
@keyframes glitch {
    0%   { transform: translate(0); }
    20%  { transform: translate(-3px, 3px); }
    40%  { transform: translate(-3px, -3px); }
    60%  { transform: translate(3px, 3px); }
    80%  { transform: translate(3px, -3px); }
    100% { transform: translate(0); }
}

@media only screen and (min-width: 768px) and (max-width: 1440px) {
    #links { margin-left: .12em; }
}
@media only screen and (min-width: 1440px) {
    #links { margin-left: .32em; }
}

.no-js body:has(#links a:hover) { background-color: #050505; }
.no-js body:has(#links a:hover) #no-js-h1.heading { color: #e40202; }