.game-features{
    display: flex;
    align-items: center;
    position: relative;
    flex-direction: column;
    overflow: hidden;
    user-select: none;
    pointer-events: none;
    .feature-title{
        text-align: center;
        font-family: Poppins-Extra-Bold;
        color: white;
        font-size: 2.5rem;
        margin: 2rem 3rem;
        margin-bottom: 0;
        z-index: 2;
    }
    .foreground{
        width: 100%;
        height: 100%;
        background-repeat: repeat;
        position: absolute;
        left: 0;
        z-index: 1;
    }
    .content{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
        max-width: 70rem;
        width: 100%;
        padding-bottom: 4rem;
        
        .feature{
            width: calc(100% / 2 - 1rem);
            display: flex;
            justify-content: center;
            align-items: center;
            align-self: flex-start;
            flex-shrink: 0;
            flex-grow: 1;
            z-index: 2;
            .wrapper{
                width: 70%;
                max-width: 25rem;
                .title{
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    position: relative;
                    width: 100%;
                    color: white;
                    margin-top: 2rem;
                    margin-bottom: 1rem;
                    .text{
                        position: absolute;
                        font-family: Poppins-Bold;
                        font-size: 2vw;
                    }
                    img{
                        max-width: 80%;
                    }
                }
                .image{
                    width: 100%;
                    border: 0.5vw solid var(--border-color);
                    border-radius: 10px;
                    overflow: hidden;
                    img{
                        user-select: none;
                        max-width: 100%;
                    }
                }
                .description{
                    color: white;
                    text-align: center;
                    margin-top: 1rem;
                    font-family: LexendDeca-Regular;
                }
            }
        }
    }
}

@media screen and (min-width: 1200px) {
    .game-features{
        
        .content{
            
            .feature{
                
                .wrapper{
                    
                    .title{
                        
                        .text{
                            position: absolute;
                            font-family: Poppins-Bold;
                            font-size: 18pt;
                        }
                        
                    }
                    .image{
                        border: 6px solid var(--border-color);
                    }
                }
            }
        }
    }
}

@media screen and (max-width: 770px ){
    .game-features{
        
        .content{
            flex-direction: column;
            .feature{
                width: calc(100%);
                .wrapper{
                    
                    .title{
                        
                        .text{
                            position: absolute;
                            font-family: Poppins-Bold;
                            font-size: 12pt;
                        }
                        
                    }
                    .image{
                        border: 1vw solid var(--border-color);            
                    }
                }
            }
        }
    }
}

@media screen and (max-width: 340px ){
    .game-features{
        .feature-title{
            font-size: 1.5rem;
            margin: 1.5rem 2.5rem;
            margin-bottom: 0;
        }
        .content{
            flex-direction: column;
            .feature{
                width: calc(100%);
                .wrapper{
                    
                    .title{
                        margin-top: 1.5rem;
                        .text{
                            position: absolute;
                            font-family: Poppins-Bold;
                            font-size: 5vw;
                        }
                        
                    }
                    .image{
                        border: 1vw solid var(--border-color);            
                    }
                    .description{
                        margin-top: 3vw;
                    }
                }
            }
        }
    }
}