.title {
    font-family: system-ui,-apple-system,system-ui,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 700;
    font-size: max(13vw, 60px);
    text-align: center;
    width: 90%;
    height: fit-content;
    position: relative;
    left: 5%;
    cursor: pointer;
    transition: transform 0.2s;

    background-color: var(--blue);
    background-image: linear-gradient(to bottom, #fff, var(--white));
    background-size: 45%;
    background-repeat: repeat;
    background-position: center;
    letter-spacing: -2px;
    
    background-clip: unset;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}

.title-blue {
    background-image: linear-gradient(to right, #008cff, #65c1eb);
    left: 0;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: var(--blue);

    background-clip: unset;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}

.title-cross-out {
    background-color: red;
    height: calc(1vw + 5px);
    width: 80vw;
    position: absolute;
    transform: rotate(5deg) translate(10vw, calc(max(13vw, 60px) * -0.7));
    animation: cross-out-title forwards 1s ease-out;
}

.divider {
    width: 100%; 
    height: 18px;
    background-image: url("../files/Images/Triangle.svg");
    background-repeat: repeat-x;
    background-size: 80px 20px;
    background-position: 0 -2px;
    background-color: white;
    position: relative;
    animation: moving-divider infinite linear 3s, floating-divider infinite ease-in-out 2s;
    transform: translateY(-1px);
}

.section-container {
    width: 100%;
    height: fit-content;
    background-color: black;
    position: relative;
    left: 0;
    top: 0;
}

.sub-background {
    background-color: #ebebeb;
    width: 100%;
    height: fit-content;
    position: relative;
    padding: 20px 0;
    margin: 30px 0;
}

.subtitle {
    font-family: system-ui,-apple-system,system-ui,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 800;
    position: relative; 
    top: 15px; 
    background: transparent; 
    color: var(--blue);
    text-shadow: 5px 8px #000;
    font-size: calc(20px + 5vw);
    width: fit-content;
    margin: auto;
    left: 0;
    cursor: default;
    user-select: none;
    text-align: center;
    line-height: calc(20px + 5vw);
}

.subtitle-2 {
    font-family: system-ui,-apple-system,system-ui,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 800;
    font-size: calc(20px + 4vw); 
    margin: -15px 0 40px 0;
    color: var(--blue);
    text-shadow: 5px 5px #000;
    text-align: center;
    position: relative; 
    top: 0; 
}

.subtitle-3 {
    font-family: system-ui,-apple-system,system-ui,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 700;
    font-size: calc(10px + 2vw); 
    margin: 40px auto 40px auto;
    color: var(--blue);
    text-align: center;
    position: relative; 
    top: 0; 
    border-radius: 20px;
    box-shadow: 0 0 10px grey;
    transition: all 0.3s;
    user-select: none;
}

.subtitle-3:hover {
    background-color: white;
    border: 1px solid white !important;
    cursor: pointer;
}

.description {
    width: calc(100% - 40px);
    height: fit-content;
    margin-top: 40px;
    position: relative;
    padding: 20px;
    font-family: system-ui,-apple-system,system-ui,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 700;
    font-size: calc(10px + 0.8vw);
    color: #9e9e9e;
    text-align: center;
}

@media (max-width: 1000px) {
    .image-grid {
        grid-template-columns: repeat(1, min(80vw, 800px)) !important;
    }
}

.image-grid {
    width: fit-content;
    height: fit-content;
    grid-template-columns: repeat(2, min(40vw, 800px));
    grid-gap: 20px;
    display: grid;
    position: relative;
    margin: 0 auto 40px auto;
}

.image-grid.single {
    grid-template-columns: repeat(1, min(60vw, 800px)) !important;
}

.image-grid-item {
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 0 20px var(--light-grey);
    position: relative;
}

@keyframes moving-divider {
    0% {
        background-position: 0 -2px;
    }
    100% {
        background-position: 80px -2px;
    }
}

@keyframes floating-divider {
    0% {
        transform: translateY(-1px);
    }
    50% {
        transform: translateY(-1px);
    }
    100% {
        transform: translateY(-1px);
    }
}

@keyframes cross-out-title {
    0% {
        clip: rect(0, 0, 100px, 0);
    }
    100% {
        clip: rect(0, 80vw, 100px, 0);
    }
}