body {
    background-color: black;
}

h1, h2 {
    color: red;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.card-container > img {
    width: 12vw;
}

.modal {
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    align-items: center;
    justify-content: center;
}

.modal > img {
    width: 80vw;
    height: 80vh;
    object-fit: contain;
}