@import url('https://fonts.googleapis.com/css2?family=Black+Ops+One&display=swap');
body {
    background-color: #171A1E!important;
    color: white;
    font-family: 'Black Ops One', cursive;
}

img.art {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 1s;
}

.thumb {
    overflow: hidden;
}

img.art:hover {
    transform: scale(1.2);
}