@font-face {
    font-family: 'Fistalle';
    src: url('Fonts/Fistalle.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'BerkeleyMono';
    src: url('Fonts/BerkeleyMonoTrial-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

body {
    background-image: url("images/WallpaperTesting/GreenGranite2.jpg");
    background-size: 500px;
    font-family: 'Fistalle', sans-serif;
    overflow-x: hidden;
}

.title-outer {
    min-height: 30vh;
    height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    z-index: 2;
    mix-blend-mode: darken;
}

h1 {
    color: #ffffff;
    margin: 1pc auto;
    font-size: clamp(2em, 7vw, 4.5em);
    font-family: Fistalle, sans-serif;
    font-weight: 500;
    text-align: center;
    display: block;
    width: 100%;
    letter-spacing: 30px;

}

@media (max-width: 600px) {
    h1 {
        font-size: clamp(1.2em, 10vw, 2.5em);
    }
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: var(--page-color, transparent);
    mix-blend-mode: soft-light;
}

body > * {
    position: relative;
    z-index: 1;
}

mark {
    background: var(--page-color);
    color: #ffffff;
    display: inline-block;
    padding: 5px 0 0 30px;
}
