.wall {
    fill: none;
    stroke: black;
    stroke-width: 2;
}
.player {
    fill: red;
}

.maze{
    width: 100%;
}

.third-sreen{
    display: flex;
    background: white;
    align-items: center;
}

.tetris-wrapper{
    min-width: 50%;
    display: flex;
    align-items: center;
}

@media (max-width: 800px) {
    .third-sreen{
        flex-direction: column;
    }

    .tetris-wrapper{
        width: 100%;
        height: fit-content;
    }

    .tetris-text{
       
        
        width: 100%;
    }

    .tetris-text span{
        font-size: 6.6vw;
    }

    #tetris-container.active {
        height: 110vw;
    }

    #tetris-container.active .tetoris-content {
        position: absolute;
        transform: translateX(-50%) translateY(-50%);
        top: 50%;
        left: 50%;
      
        display: grid;
        grid-template-rows: repeat(18, 6vw) !important;
        -ms-grid-rows: repeat(10, 50px);
        grid-template-columns: repeat(10, 6vw) !important;
        -ms-grid-columns: repeat(10, 50px);
        padding: 15px;
        animation: vibration 0.2s ease-in-out 1 3.2s, vibration 0.2s ease-in-out 1 6.2s, vibration 0.2s ease-in-out 1 8.6s, vibration 0.2s ease-in-out 1 10.4s, vibration 0.2s ease-in-out 1 13.4s, vibration 0.2s ease-in-out 1 16.4s, vibration 0.2s ease-in-out 1 19s, vibration 0.2s ease-in-out 1 22s, vibration 0.2s ease-in-out 1 24.6s, vibration 0.2s ease-in-out 1 28.8s;
    }
}