* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #234;
}

.content {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    width: 100%;
    max-width: 800px;
    height: auto;
    background-image: url('../img/bg1.webp');
    background-repeat: no-repeat;
    background-size: cover;
}

.logo {
    width: 100%;
    text-align: center;
    margin-top: 2em;
    padding: 0 20px;

}

.tengah {
    text-align: center;
}

.mt2a {
    margin-top: 2em;
}

.text {
    margin: 20px 0;
    font-size: 2em;
    color: #fff;
    font-weight: 600;
}

.game-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
}

.copyright {
    font-weight: 600;
    margin-bottom: 40px;
}

#footer {
    position: fixed;
    bottom: 0;
}

.float-animate {
    animation: float 6s ease-in-out infinite
}

@keyframes float {
    0% {
        transform: translatey(0px)
    }

    50% {
        transform: translatey(30px)
    }

    100% {
        transform: translatey(0px)
    }
}

@media screen and (max-width: 428px) {
    .game-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .copyright {
        margin-bottom: 80px;
    }
}