@import url('https://fonts.cdnfonts.com/css/pixeboy');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Pixeboy', sans-serif;
    font-size: 25px;
    letter-spacing: 1px;
    user-select: none;
}

.loader-wrapper {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgb(66, 66, 66);
    z-index: 999;
}

.game-score {
    position: fixed;
    top: 0;
    left: 0;
    margin: 15px;
    color: white;
}

.high-score {
    position: fixed;
    top: 0;
    right: 0;
    margin: 15px;
    color: white;
}

.techurja-logo-landing {
    position: fixed;
    z-index: 98;
    top: 50%;
    left: 50%;
    height: 10%;
    transform: translate(-50%, -50%);
    animation: vanish normal forwards;
    animation-delay: 2.4s;
}

.final_pacman {
    position: absolute;
    z-index: 99;
    top: 50%;
    left: -20%;
    animation: final_moveForward 3s linear;
    animation-delay: 0.8s;
}

.final_pacman::before, .final_pacman::after {
    content: "";
    display: block;
    height: 0;
    width: 0;
    position: absolute;
    border: solid 30px yellow;
    margin-top: -30px;
    border-radius: 50%;
    border-right-color: transparent;
    border-bottom-color: transparent;
    animation: final_mouthTop 0.7s ease infinite;
}

.final_pacman::after {
    border-color: yellow;
    border-right-color: transparent;
    border-top-color: transparent;
    animation: final_mouthBottom 0.7s ease infinite;
}

@keyframes vanish {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes final_moveForward {
    0% {
        left: -20%;
    }
    100% {
        left: 100%;
    }
}

@keyframes final_mouthTop {
    50% {
        transform: rotate(44deg);
    }
}

@keyframes final_mouthBottom {
    50% {
        transform: rotate(-44deg);
    }
}

@keyframes final_peeperLeft {
    0%, 100% {
        left: 5px;
    }

    50% {
        left: 10px;
    }
}
