/* pop text animation by koiwaprimevera */

@font-face {
    font-family: "Digital Disco";
    src: url(fonts/DigitalDisco.ttf) format("truetype");
}

@font-face {
    font-family: "Segoe UI Light", Tahoma, Geneva, Verdana, sans-serif;
    src: url(fonts/Segoe-UI-Light.ttf) format("truetype");
}

@keyframes pop {
    from {
    transform:scale(0.90)
    }

    50% {
    transform:scale(1)
    }

    to {
    transform:scale(0.90)
    }
}

@-webkit-keyframes pop {
    from {
    -webkit-transform:scale(0.90)

    }

    50% {
    -webkit-transform:scale(1)

    }

    to {
    -webkit-transform:scale(0.90)

    }
}

:root {
    cursor: url(textures/arrow.png), auto !important;
    height: -webkit-fill-available;
    text-align: center;
    background-image: url(universal/bliss.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    image-rendering: pixelated;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

h1 {
    margin: 1rem 0;
    font-size: 7rem;
    color: #fff;
    font-family: "Digital Disco";
    font-weight: normal;
    filter: drop-shadow(0 7px #000) drop-shadow(7px 0 #000) drop-shadow(0 -7px #000) drop-shadow(-7px 0 #000);
    -webkit-animation: pop 1s ease-in-out infinite alternate;
    animation: pop 1s ease-in-out infinite alternate;
    -moz-animation: pop 1s ease-in-out infinite alternate;
}

h2 {
    margin: 1rem 0;
    font-size: 1.5rem;
    color: #fff;
    font-family: "Digital Disco";
    font-weight: normal;
    filter: drop-shadow(0 2px #000) drop-shadow(2px 0 #000) drop-shadow(0 -2px #000) drop-shadow(-2px 0 #000);
}

a {
    padding: 5px 0;
    text-decoration: none;
    color: #000;
    font-family: "Segoe UI Light", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2rem;
    box-sizing: border-box;
    border: 1px solid #003c74;
    background: linear-gradient(180deg, #fff, #ecebe5 86%, #d8d0c4);
    box-shadow: none;
    border-radius: 3px;
    &:hover {
        filter: brightness(115%);
    }
}

.blocked {
    padding: 5px 0;
    text-decoration: none;
    color: #000;
    font-family: "Segoe UI Light", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2rem;
    box-sizing: border-box;
    border: 1px solid #003c74;
    background: linear-gradient(180deg, #fff, #ecebe5 86%, #d8d0c4);
    box-shadow: none;
    border-radius: 3px;
}

#center {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#selections {
    display: grid;
    margin: 0 auto;
    gap: 15px;
    width: 15rem;
}