:root {
    color-scheme: dark;

    --primary-text: #f3dad2;
    --secondary-text: #f3dad2;
    --primary-teal: rgb(0, 180, 180);
}

@keyframes fadeIn {
    0%,
    30% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

body,
html {
    overflow-x: hidden;
    overflow-y: auto;
    background: #212121;
    margin: 0;
    padding: 0;
    color: var(--primary-text);
}

.banner {
    position:absolute;
    top: 0;
    background-color: rgb(240,240,240);
    color: black;
    height: 100px;
    padding: 12px;
    font-size: 38px;
    width: 100%;
    line-height: 100px;
    z-index: 50;
}

.banner a {
    text-decoration: none;
    color: black !important;
    cursor: pointer;
}

.banner span {
    display:block;
    float: left;
    line-height: 70px;
    padding-left: 34px;
    font-family: Dosis;
}

.banner img {
    height: 100%;
    float: left;
}

* {
    box-sizing: border-box;
}

p {
    font-family: Dosis;
}

menu {
    z-index: 100;
    margin: 0;
    padding: 25px;
    background: linear-gradient(225deg, rgba(33,33,33,1) 0%, rgba(33,33,33,0.2) 90%, rgba(33,33,33,0) 99%);
    border-bottom-left-radius: 12px;
    position: fixed;
    top: 0px;
    right: 0px;
    display: flex;
    flex-direction: column;
    font-family: Dosis;
    font-weight: 400;
    text-align: right;
}

menu a,
menu a:visited {
    font-size: calc(14px + 0.5vw);
    text-decoration: underline;
    margin-bottom: 6px;
    color: var(--primary-text);
}

a,
a:visited {
    color: var(--primary-teal);
}

section {
    animation: 1s fadeIn forwards;
    display: flex;
    min-height: 100vh;
    padding: 25px;
    gap: 12px;
    max-width: 1680px;
    margin: 0 auto;
}

section.centered {
    align-items: center;
    justify-items: center;
}

section.spaced {
    align-content: space-around;
}

section.wrap {
    flex-wrap: wrap;
}

.gallery-cell {
    text-decoration: underline;
    color: var(--primary-text);
}

.gallery-cell {
    text-decoration: none;
    color: var(--primary-text);
    position:relative;
    padding: 0 12px;
}

.gallery-cell img {
    height: 75vh;
    max-width: 100%;
    object-fit: cover;
}

.gallery-cell h1 {
    font-size: calc(24px);
    margin-top: 0;
    margin-bottom: 0;
}
.gallery-cell i {
    margin-top: 0;
    float: right;
    font-size: calc(14px + 1vw);
}

@media only screen and (max-width: 900px) {
    .main-title {
        transform: rotate(45deg) scale(1.8, 1.8);
    }
}

@keyframes pulsate {
    0%,
    25%,
    35%,
    60%,
    80% {
        text-shadow: 0 0 10px var(--primary-text), 0 0 20px var(--primary-text),
            0 0 40px var(--primary-teal), 0 0 80px var(--primary-teal),
            0 0 90px var(--primary-teal), 0 0 100px var(--primary-teal);
    }
    10%,
    30%,
    40%,
    70%,
    100% {
        text-shadow: 0 0 5px var(--primary-text), 0 0 10px var(--primary-text),
            0 0 20px var(--primary-teal), 0 0 40px var(--primary-teal),
            0 0 50px var(--primary-teal), 0 0 75px var(--primary-teal);
    }
}

h1 {
    margin-top: 0px;
    font-family: Dosis;
    font-weight: 400;
    font-size: calc(20px + 4vw);
    width: 100%;
    margin-bottom: 6px;
}

h2 {
    color: var(--secondary-text);
    font-family: Dosis;
    font-weight: 300;
    font-size: calc(14px + 1vw);
    width: 100%;
}

h1.main-title {
    width: 100%;
    color: var(--primary-teal);
    text-align: center;
    font-size: calc(24px + 4vw);
    font-family: Neon;
    animation: pulsate 9s infinite alternate;
}
