:root {
    font-family: Inter, sans-serif;
    font-size: 15pt;
    cursor: default;
    scroll-behavior: smooth;
}

body {
    margin: 0;
}

img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

h1, h2 {
    font-family: Halant;
    text-align: center;
    line-height: 1.1;
}

p {
    text-align: justify;
    word-wrap: break-word;
    overflow-wrap: break-word;
  
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
}

[dropsh] {
    filter: drop-shadow(0 0 .5ex black);
}
[textsh] {
    text-shadow: 0 0 1ex black;
}


#bktop {
    --footer-align: calc(
        1rem + 16px + (12pt * .5) - (1rem)
    );
    line-height: 1;
    width: 2rem;
    height: 2rem;
    font-size: 14pt;
    padding: 0;
    position: fixed;
    bottom: var(--footer-align);
    right: var(--footer-align);
    border-radius: 100vw;
    
    background: #141c38aa;
    color: white;
    border: none;
    cursor: pointer;
    opacity: 100%;
    transition: opacity 0.5s;
}
#bktop::before {
    content: '↑';
    font-family: Inter;
    font-weight: bold;
}

.hidden { opacity: 0% !important; }
.removed { display: none !important; }



@media (max-width: 1023px) {
    :root {
        font-size: 12pt;
    }
}