@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%;
}

img{
    transition: transform 0.2s ease-in-out
}

img:hover{
    transform: scale(1.05);
}


@media (max-width: 400px) {
    #screens img{
        width: 100%;
    }
}