:root {
    color: white;
    background-color: black;
    font-size: 1vh;
    font-family: Jost, "Yu Gothic", Arial, sans-serif;

    margin: 0;
    padding: 0;
    overflow: hidden;
    line-height: 1.2;
    display: block;
}

.entrance h1, .entrance h2 {
    font-weight: 100;
    font-size: 20em;
    margin-bottom: 0;
    line-height: 1em;
}

.entrance h2 {
    font-size: 13em;
}

.entrance ul {
    display: inline-block;
    margin-top: 51px;
}

/* Create a custom checkbox */
.entrance li {
    position: relative;
    padding-left: 48px;
    padding-bottom: 4px;
    cursor: pointer;
    font-size: 22px;
    font-weight: 300;
    user-select: none;
    text-align: left;
    text-align-last: auto;
    list-style: none;
}


/* Hide the default checkbox */
.entrance li input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    left: 0;
    z-index: 1;
    height: 30px;
    width: 30px;

}



/* Create the checkmark/indicator (hidden when not checked) */
.entrance li .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: black;
    border: 1px solid #ccc;
}

/* When the checkbox is checked, add a background color */
.entrance li input:checked~.checkmark {
    background-color: black;
    border-color: white;
}

/* Create the checkmark/indicator (visible when checked) */
.entrance li .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.entrance li input:checked~.checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.entrance li .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}


.entrance cite {
    font-size: 70px;
    font-style: normal;
    font-weight: 200;
}

.entrance cite:before,
.entrance cite::after {
    content: '\a';
    white-space: pre;
}

.entrance time {
    /* position: fixed;
    bottom: 32px;*/
    font-size: 12px;
    font-weight: 200;
}

.entrance i {
    font-size: 28px;
    font-weight: 200;
}

button {
    width: 300px;
    height: 46px;
    margin: 42px auto;
    cursor: pointer;
    background-color: black;
    color: white;
    border: 1px white solid;
}

button:hover {
    color: grey;
    border-color: grey;
}


button.in_progress {
    background-repeat: no-repeat, no-repeat;
    background-size: 300px 46px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 10px, rgba(255, 255, 255, 1) 300px);
    background-position-x: 300px;
    animation: progress_bar 55000ms 1;
}

@keyframes progress_bar {
    from {
        background-position-x: 300px;
    }

    to {
        background-position-x: 0;
    }
}

p.desk {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 200;
    text-align: center;
}
#dText.entrance p.seria {
    font-weight: 200;
    font-size: 30px;
    margin-top: 38px;
    margin-bottom: 55px;
    line-height: 1.2;
}

#dText {
    width: 100%;
    margin-top: 150px;
    text-align: center;
    text-align-last: center;
    direction: ltr;
}

#dText p.seria a {
    color: white;
    text-decoration-thickness: from-font;
}

b {
    font-weight: bold;
    color: var(--bcolor);
}

svg {
    stroke-opacity: 50%;
    stroke: var(--bcolor);
}

svg,
div#dText {
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
}


#dText.entrance {
    padding-top: 0;
    height: 100%;
}

.Gone {
    animation: opain var(--gone) ease-in-out 1 forwards;
    animation-delay: 0s;
}

@keyframes opain {
    0% {
        opacity: 1;
    }

    30% {
        opacity: 1;
    }

    80% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@media only screen and (orientation: portrait) {
    .entrance h2 {
        font-size: 7em;
    }
    #dText.entrance p.seria {
        font-weight: 200;
        font-size: 3em;
        margin-top: 2em;
        margin-bottom: 1em;
    }
    p.desk {
        font-size: 2em;
    }    
}

@media only screen and (orientation: landscape) and (max-width:860px) {
    .entrance h2 {
        font-size: 7em;
    }
    #dText.entrance p.seria {
        font-weight: 200;
        font-size: 4em;
        margin-top: 2em;
        margin-bottom: 1em;
    }
    p.desk {
        font-size: 2.8em;
    }    
}
