<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --ff-primary: 'Slackside One', sans-serif;
    
    --clr-header: #87CEEB;
    --clr-main: #CEEEFC;
    --clr-footer: #DFE5E8;
    --clr-black: #000;
    --clr-white: #FFF;
    
    --fs-header: 3rem;
    --fs-normal: 2rem;
    --fs-footer: 1.75rem;
}

@media (max-width: 660px) {
    :root {
        --fs-header: 2.5rem;
        --fs-footer: 1.25rem;
    }
}

/* General styles */
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    min-height: 100vh;
    background: var(--clr-main);
    font-family: var(--ff-primary), sans-serif;
    display: flex;
    flex-direction: column;
}

/* Header */
header {
    display: flex;
    top: 0;
    position: fixed;
    justify-content: space-between;
    width: 100vw;
    height: 100px;
    background: var(--clr-header);
    z-index: 10;
}

.logo img {
    position: fixed;
    z-index: 10;
    margin-top: 2.5px;
    width: 96px;
    height: 96px;
    margin-left: 5px;
}

.logo h1 {
    margin: 15px 0px 0px 110px;
    color: var(--clr-white);
    font-size: var(--fs-header)
}

nav {
    position: relative;
    top: 0px;
}

.nav-list {
    padding: 0;
    list-style: none;
    float: right;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
}

.nav-item {
    margin-right: 20px;
    font-size: var(--fs-header);
}

@media (max-width: 750px) {
    .nav-item, .logo h1 {
        font-size: 1.5rem;
    }
}

.nav-link {
    color: var(--clr-white);
}

.nav-link:hover, .nav-link.logo:hover, .social-list-item:hover{
    opacity: .7;
}

/* Home */
.home {
    text-align: center;
    overflow-y: hidden;
    margin: 75px 20px 0px 20px;
}

.home img {
    max-width: 100%;
    min-width: 50%;
    height: auto;
}

.home h1 {
    font-size: var(--fs-header);
    margin-bottom: 15px;
}

.home h3 {
    font-size: var(--fs-normal);
    margin-top: 0px;
}

/* About */
.about {
    text-align: center;
    overflow-y: hidden;
    margin-top: 120px;
}

.about img {
    width: 300px;
    height: 300px
}

.intro {
    font-size: var(--fs-normal);
    margin: 10px 50px;
}

/* Gallery */

.loading {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: url('img/Loading.gif') no-repeat center center;
    background-size: 30%;
    background-repeat: no-repeat no-repeat;
    background-position: center center;
    background-color: rgba(0, 0, 0, 0.6);
    overflow-y: hidden;
}

.gallery {
    display: flex;
    justify-content: center;
    margin-top: 130px;
    margin-bottom: 20px;
}
  
.gallery-images {      
    display: flex;
    columns: 3;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery-images h2.year-heading {
    font-size: var(--fs-normal);
    font-weight: bold;
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
  }

.gallery-images img {
    object-fit: cover;
    height: auto;
    width: 450px;
}

@media (max-width: 1439px) {
    .gallery-images {
        columns: 2;
        gap: 1.5rem;
    }
}

@media (max-width: 1023px) {
    .gallery-images {
        columns: 1;
        gap: 1rem;
    }
    .gallery-images img {
        width: 600px;
    }
}

@media (max-width: 600px) {
    .gallery-images img {
        width: 300px;
    }
}

.gallery-images img:hover {
    z-index: 0;
    opacity: 0.4;
    cursor: pointer;
}

.imageFull {
    display: none;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-size: contain;
    background-repeat: no-repeat no-repeat;
    background-position: center center;
    background-color: rgba(0, 0, 0, 0.6);
    overflow-y: hidden;
}

/* Contact */
.contact {
    text-align: center;
    overflow-y: hidden;
    margin: 90px 20px 0px 20px;
}

.info {
    font-size: var(--fs-header);
}

/* Footer */

.footer {
    display: flex;  
    flex-wrap: wrap;
    position: relative;
    bottom: 0;
    width: 100%;
    background: var(--clr-footer);
    font-size: var(--fs-footer);
    margin-top: auto;
}

.social-list {
    list-style: none;
    display: flex;
    padding-left: 20px;
}

.social-list-item {
    margin-right: 20px;
}

.fa-brands, .fa-solid {
    color: var(--clr-black);
}

.copyright {
    flex: 0 1 56%;
    color: var(--clr-black);
    font-size: var(--fs-footer);
}

.disclaimer {
    flex-basis: 100%;
    text-align: center;
    font-size: 1.25rem;
    margin: 0px 10px 20px 10px;
}</pre></body></html>