* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

/* Fade-in animation */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
}

.fade-in-delayed {
    opacity: 0;
    animation: fadeIn 1s ease-in-out 0.3s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Gallery item slide-in animation */
.gallery-item {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.gallery-item.animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* Override the original fade-in-delayed for gallery list */
.gallery-list.sequential-load {
    opacity: 1;
    animation: none;
}

body {
    font-family: Arial, sans-serif;
    background-color: #666666;
    color: #000;
    line-height: 1.6;
}

.container {
    max-width: 100%;
    padding-left: 3vw;
    padding-right: 3vw;
    margin-top: 12vw;
}
@media (max-width: 768px) {
    .container {
        margin-top: 25vw;
    }
}

.gallery-list {
    list-style: none;
    text-align: left;
}

.gallery-item {
    margin-bottom: 0;
}

.gallery-link {
    font-family: "Abril Fatface", serif;
    font-weight: normal;   /* not bold */
    display: block;
    font-size: 6vw;
    color: #000;
    text-decoration: none;
    line-height: 0.8;
    padding: 0.5vw 0;
    text-transform: UPPERCASE;
}

.gallery-link:hover {
    transition: color .15s ease-in-out;
    color: white;
}

.gallery-link-num {
    color: #f8e71c;
    font-size: 25%;
    font-weight: normal;
}
.collection {
    color: #66bef9 !important;
}
.gallery-link-new {
    color: #fc1100;
    font-size: 25%;
    font-weight: normal;
}

@media (max-width: 768px) {
    .gallery-link {
        font-size: 9vw;
    }
}