@import url('https://fonts.googleapis.com/css2?family=Lora:wght@700&family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&display=swap');

body {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25%, 1fr));
    gap: 10px;
    padding: 10px;
}

.grid-item {
    width: 100%;
    position: relative;
    line-height: 0;
}

.grid-item img {
    width: 100%;
    height: auto;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    transition: opacity 0.3s;
    display: flex;
}

.overlay-text {
    color: white;
    font-size: 2vh;
    padding: 4vh 3vh;
}

.date {
    font-family: 'Lora', serif;
    margin-bottom: 4vh;
    font-size: 2.5vh;
}

.disclamer {
    padding: 10px;
    font-size: 1.5vh;
    text-align: center;
}

.bold {
    font-weight: 700;
}

.italic {
    font-style: italic;
}

a {
    color: #06B6D4;
    text-decoration: none;
}

.loader {
    text-align: center;
}

.no-visible {
    display: none;
}

.preload {
    text-align:center;
    padding: 3vh;
}

.preload img {
    width: auto;
}