.second-screen{
    display: flex;
    margin-top: -4px;
    align-items: stretch;
    background: rgb(255, 255, 255);
  
}

.puzzle{
    display: flex;
    align-items: center;
    flex-grow: 0.5;
    width: 50%;
    align-items: stretch;
    cursor: pointer;
}
.puzzle-item {
    transition:  0.2s; 
    width: 25%;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    position: relative;
    border: 1px solid white;
    box-sizing: border-box;
    outline: none;

}

*{
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-tap-highlight-color: transparent;
 
}

.puzzle-item:hover {
    border: 1px solid black;
    transition: .3s ease-in-out;
}


.selected {
    border: 1px solid black;

    transition: 0.3s ease-in-out;
}
.puzzle-inner{
    display: flex;
    flex-wrap: wrap;
    width: 67%;
    position: relative;
    background: black;

}

.puzzle-text{
   width: 33%;
   height: 100%;
   object-fit: cover;

}

.raznoobrazie{
   width: 50%;
}


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

    .puzzle{
        width: 100%;
    }

    .raznoobrazie{
        width: 100%;
    }
}


