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

body{
    background: #DA4453;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #89216B, #DA4453);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #89216B, #DA4453); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    
}
main{
display: flex;
flex-direction: column;
align-items: center;
}

#logo{
    width: 100px;
}

.score{
    position: absolute;
    top: 24px;
    font-weight: 400;
    color: gold;
    right: 140px;
    font-size: 13px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.score i{
    margin-left: 2px;
}
#title{
    margin: 16px 5px;
    color: rgb(255, 210, 48);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    text-align: center;
}



.games{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.games .game{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    margin: 6px 0px;
    width: 600px;
    height: 150px;
    background: rgba( 255, 255, 255, 0.25 );
box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.20 );
backdrop-filter: blur( 9.5px );
-webkit-backdrop-filter: blur( 9.5px );
border-radius: 12px;
border: 1px solid rgba( 255, 255, 255, 0.18 );
}

.game img{
    width: 120px;
    height: 120px;
    margin-left: 16px;
    border-radius: 6px;
    object-fit:cover;

}

.game button{
    position: absolute;
    top: 16px;
    right: 16px;
    border: 0;
    width: 120px;
    height: 36px;
    font-size: 16px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    border-radius: 6px;
    color: white;
    background-color: rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 200ms ease-in-out;
    /* border: 1px solid white; */
    /* border-radius: 0 6px 0 0;
    background-color: greenyellow; */
}

.game button:hover{
    background-color: #4cd137;
    cursor: pointer;
}

.game .content{
    margin-left: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
 
}
.content h3{
    color: white;
    font-size: 24px;
    margin: 4px 0px;
    font-weight: 500;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.content p{
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    font-weight: 400;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

@media only screen and (max-width: 600px) {

    .games .game{
        width: 90%;
        height: 180px;
        justify-content: center;
        align-items: flex-start;
    }
    .game img{
        width: 100px;
        height: 100px;
        margin-left: 16px;
        margin-top: 16px;
        align-self: top;
        border-radius: 6px;
        object-fit:cover;
    
    }
    .content p{
        color: rgba(255, 255, 255, 0.68);
        font-size: 13px;
        font-weight: 400;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    }

    .content h3 {
     margin-top: 16px;
    }
.game button{
        position: absolute;
        right: 8px;
        top: auto;
        bottom: 8px !important;
    }

    .score{
        position: absolute;
        top: auto;
        bottom: 16px !important;
        
    }
    #logo{
        width: 95px;
    } 

} 