:root {
    color-scheme: dark;
}

@font-face {
    font-family: 'Kongtext';
    src: url('../fonts/kongtext.woff') format('woff'),
    url('../fonts/kongtext.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Comic Sans';
    src: url('../fonts/comicsans.woff') format('woff'),
    url('../fonts/comicsans.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    margin: 0;
    background-color: #000;
    user-select: none;
    overflow: hidden;
}

button {
    font-family: 'Kongtext';
    color: #000;
    background-color: #ff0000;
    font-size: 16px;
    padding: 2px;
    border: 2px solid #fff;
    text-decoration: none;
    cursor: pointer;
}

button:hover {
    background-color: #9f0000;
}

input[type="radio"] {
    display: none;
}

input[type="radio"]:checked+label {
    color: #fff;
}

a:link, a:visited {
    color: #9e9eff;
    text-shadow: 0 0 5px #9e9eff;
    text-decoration: none;
}

#centerText {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Kongtext';
    color: #E4C424;
    font-size: 24px;
    line-height: 36px;
    text-align: center;
}

#centerText.core {
    color: #fff;
}

#playButton {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

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

#keys {
    font-size: 32px;
}

.key {
    transition: 0.2s;
}

.key:not(.noHover):hover {
    color: #9e9eff;
}

.goldGlow {
    color: gold;
    text-shadow: 0 0 5px goldenrod, 0 0 10px goldenrod, 0 0 15px goldenrod, 0 0 20px goldenrod, 0 0 25px goldenrod, 0 0 30px goldenrod, 0 0 35px goldenrod;
}

.redGlow {
    color: red;
    text-shadow: 0 0 5px darkred, 0 0 10px darkred, 0 0 15px darkred, 0 0 20px darkred, 0 0 25px darkred, 0 0 30px darkred, 0 0 35px darkred;
}

.selected {
    color: #9e9eff;
}

#toucan-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#toucan {
    cursor: pointer;
    width: 30vw;
}

#infobox {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 500px;
    background-color: rgba(0, 0, 0, 0.8);
    border: 2px solid #9e9eff;
    border-radius: 10px;
    padding: 8px;
    font-size: 14px;
    letter-spacing: 0px;
    box-shadow: 0px 0px 10px #9e9eff;
    overflow-y: auto;
    user-select: text;
}

#nudge, #show-info-button, #hide-info-button {
    position: absolute;
    bottom: 0;
    font-size: 16px;
    font-family: 'Kongtext';
    line-height: 36px;
    width: 100vw;
    text-align: center;
}

#show-info-button, #hide-info-button {
    color: #9e9eff;
    text-shadow: 0 0 5px #9e9eff;
    text-decoration: none;
    cursor: pointer;
}

#doge-points-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

#doge-points {
    position: relative;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.doge-point {
    position: absolute;
    pointer-events: none;
    /*
    width: 4px;
    height: 4px;
    background-color: red;
    */
}

.doge-text {
    position: absolute;
    font-family: 'Comic Sans';
    font-size: 21px;
    user-select: none;
    pointer-events: none;
}

@media screen and (max-width: 767px), (max-height: 630px) {
    #playButton {
        font-size: 32px;
        border: 4px solid white;
    }

    #answers {
        line-height: 40px;
    }

    #submit {
        font-size: 20px;
        border: 4px solid white;
    }

    #centerText {
        font-size: 20px;
        line-height: 28px;
        width: 100%;
    }

    #centerText.core {
        font-size: 24px;
        line-height: 32px;
        width: 80vw;
    }

    #toucan {
        width: 80vw;
    }

    #infobox {
        width: 90vw;
        height: 80vh;
    }

    #nudge, #show-info-button, #hide-info-button {
        bottom: 4px;
    }

    .doge-text {
        font-size: 16px;
    }
}

@media screen and (max-width: 400px) {
    #nudge, #show-info-button, #hide-info-button {
        font-size: 14px;
    }
}