:root {
    --bg-color: #ffffff;
    --text-color: #000000;
}

@media (max-width: 800px) {

    h1,
    h2 {
        font-size: 20px;
        -webkit-text-stroke-width: 0.3px;
        -webkit-text-stroke-color: black;
        letter-spacing: 0.15px;
    }
}

@media (min-width: 801px) {

    h1,
    h2 {
        font-size: 24px;
        -webkit-text-stroke-width: 0.4px;
        -webkit-text-stroke-color: black;
        letter-spacing: 0.2px;
    }
}

html {
    scrollbar-gutter: stable overlay;
}

body {
    width: 100%;
    padding: 0px;
    margin: auto;
}

html,
body {
    height: 100%;
    margin: 0;
    overflow: hidden;
    /* disables scrolling */
}

body {
    background-color: var(--bg-color);
}

#title {
    display: block;
    width: 100vw;
    height: 20dvh;
    position: relative;
    color: var(--text-color);
}

#images {
    width: min(100dvw, 60dvh);
    height: min(100dvw, 60dvh);
    position: relative;
    margin: auto;
}

#scroll {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#scroll img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

#info {
    position: relative;
    width: 100vw;
    height: 20dvh;
    color: var(--text-color);
}

h1,
h2 {
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-family: "adobe-kis", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.4;
}

em {
    font-family: "adobe-kis", sans-serif;
    font-weight: 400;
    font-style: italic;
}

a:link,
a:active,
a:visited {
    color: var(--text-color);
    text-decoration: underline;
}

a:hover {
    color: var(--text-color);
    text-decoration: none;
}

::selection {
    background-color: var(--text-color);
    color: var(--bg-color);
}

::-moz-selection {
    background-color: var(--text-color);
    color: var(--bg-color);
}

img {
    user-select: none;
    -webkit-user-drag: none;
}
