body{
     margin:0;
    padding:0;
    min-height:100vh;   
    width:100%;
    font-family:Georgia, 'Times New Roman', Times, serif;
    text-align:center;
    background:#f4f4f4;
    background-image:url("bcg.png");
    background-repeat: no-repeat;
    background-size:cover;
    background-position: center;
    background-attachment:scroll;
}

h1{
    margin-top:5px;
    color:azure
}

.games{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap: wrap;
    margin-top:40px;
    gap:30px;
}

.game{
    height:200px;
    width:90%;
    max-width:200px;
    aspect-ratio:1/1;
    display:inline-block;
    padding:10px;
    margin:20px;
    background:#e615bf;
    color:white;
    text-decoration:none;
    font-size:20px;
    border-radius:10px;
}

.game:hover{
    background:#e90743;
}
.game img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius:10px;
}
@media (max-width:600px){

    h1{
        font-size:24px;
    }

    .games{
        flex-direction:column;
        align-items:center;
        gap:20px;
        margin-top:20px;
    }

    .game{
        width:80%;
        max-width:300px;
    }

   
}
.bcg{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:-1;
}