@import url('notepad.css');

*{
    user-select: none;
}

#screens{
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    gap: 20px;
}

#screens img{
    width: 30%;
}


#screens img:target {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
}

img{
    transition: transform 0.2s ease-in-out
}

img:hover{
    transform: scale(1.05);
}

@media (max-width: 400px){
    #screens img{
        width: 100%;
    }
}