body {
    font-family: 'Amatic SC', cursive;
    margin: 0px;
    overflow-x: hidden;
    -webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
.desktopmenuItem {
    color: white;
}

.header-image {
    background-image: url('media/bg-top.jpg');  
    background-position: center; 
    background-repeat: no-repeat;
    background-size: cover; 
    height: 600px; 
    display: grid; 
    place-items: center;
    font-family: 'Amatic SC', cursive;
    margin-bottom: 25px;
}

header {
    -webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}


@media only screen and (min-width: 1280px) {

    .header-image {
        background-image: url('media/bg-top.jpg');  
        background-position: center; 
        background-repeat: no-repeat;
        background-size: cover; 
        height: 600px; 
        display: grid; 
        place-items: center;
        font-family: 'Amatic SC', cursive;
        margin-bottom: 25px;
    }
    

    #ente-3 {
        width: 10vw;
        position: absolute;
        left: 0;
        transform: rotate(-7deg);
        transition: 0.5s all ease-in-out;
    }

    #ente-3:hover {
        transform: scale(10);

    }
    body {
        filter: blur(0);
    }
    
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.top-heading {
    font-size: 48pt;
    color: white;
}

.sub-heading {
    font-size: 24pt;
}

article {
    margin: 25px;
}

.game-icon {
    max-width: 85%; 
    margin: 25px;
}

@media only screen and (max-width: 1279px) {
    #ente-3 {
        display: none;
    }
    @keyframes blinking {
        0% {
            color: white;
        }
        25% {
            color: red;
        }
        75% {
            color: red;
        }
        100% {
            color: white;
        }
    }
}

.hidden {
    animation: dissapear 4s;
    animation-fill-mode: both;
}
