div {
    display: block;
    unicode-bidi: isolate;
}

.container {
    width: 85%;
    max-width: 100%;
    margin: 0 auto 10px;
}

body {
    background: url(https://i.pinimg.com/736x/3b/c9/04/3bc904e27a489fbb81f6e6856dbbe82d.jpg);
    background-size: cover;
}

/* header */
header {
    text-align: center;
    font-size: 1.5em;
    margin: 10px 0 10px;
    padding: 5px 10px;
    background: url(https://64.media.tumblr.com/4ef363843eadaf4d22e813f4377586d0/5bbc5cd08fbcae95-9b/s500x750/4392091c5c59bb20616932eb6156d499f9037cca.gifv) #59001ea6;
    background-size: 55%;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: soft-light;
    background-color: #ffc4d3;
}

/* main */
main {
    background: url(https://i.pinimg.com/736x/0f/ee/ab/0feeab0e76f2ef38202033e65403ad9a.jpg)  #fceef4d4;
    padding: 6px 0px;
    font-size: 1.2em;
    background-size: cover;
    border: solid 3px #ff9fc9;
    box-shadow: 0px 0px 6px #a14b74;
}*

h1 {
    text-align: center;
    font-size: 2em;
    color: #ffffff;
    -webkit-text-stroke: 1px #000000;
    margin-top: 0;
    margin-bottom: 20px;
}

.imgs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 10px;
}

.imgs img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.imgs a:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.data-caption {
    text-align: center;
    font-size: 1.5em;
    color: #ffffff;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .imgs {
        grid-template-columns: repeat(2, 1fr);
    }
}
