@font-face {
    font-family: 'prstar2p';
    src: url(../fonts/prstartk.ttf) format('truetype');
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    height: 100dvh;
    width: 100dvw;
    background-color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    touch-action: none;
    overflow: hidden;
    overscroll-behavior: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    img {
        max-width: 800px;
        height: auto;
        width: 100%;
    }

    #marcador {
        position: absolute;
        top: 20px;
        left: 20px;
        color: #fff;
        font-family: 'prstar2p';
        font-size: 1.5rem;
    }

    #vidas {
        display: flex;
        position: absolute;
        top: 20px;
        right: 20px;
        color: #fff;
        font-family: 'prstar2p';
        font-size: 1.5rem;

        img {
            width: 30px;
        }
    }

    a {
        text-decoration: none;
        color: #fff;
        font-family: 'prstar2p';
        font-size: 1.5rem;

        &:hover {
            animation: parpadeo 0.8s ease-in-out infinite;
        }
    }
}

@keyframes parpadeo {
    0% {
        opacity: 100%;
    }

    50% {
        opacity: 0%;
    }

    100% {
        opacity: 100%;
    }
}