* {
    font-family: "Roboto Mono", monospace;
    font-weight: 300; 
    font-size: 0.85rem;
    letter-spacing: -0.03rem;
    
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: black;
}

* {
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox, Safari 18.2+, Chromium 121+ */
}
*::-webkit-scrollbar { 
    display: none;  /* Older Safari and Chromium */
}

body {
    background-color: #f4f3f2;
}

#total {
    max-width: min(40rem, 90%);
    margin: auto;
}

#header {
    margin-top: 6.75rem;
    text-align: center;
    font-weight: 400;
}

#intro {
    margin-top: 4.05rem;
    margin-bottom: 1.55rem;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    -o-hyphens: auto;
    word-break: break-word;
    hyphens: auto;
}

.entry {
    margin-top: 4.05rem;
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    column-gap: 1.35rem;
}

.painting {
    grid-column: span 3;
}

img {
    -khtml-user-select: none;
    -o-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

.image {
    position: relative;
    top: 0;
    left: 0;
}

.image > .t1 {
    max-width: 100%;
}

.image .t2 {
    position: absolute;
    max-width: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
}

.image .t2:active {
    width: min(36rem, 90%);
    z-index: 2;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.t2:active ~ #fader {
    z-index: 1;
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: #f4f3f2;
    opacity: 0.5;
}

.image .t3 {
    width: min(36rem, 90%);
    z-index: 2;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.t3 ~ #fader {
    z-index: 1;
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: #f4f3f2;
    opacity: 0.5;
}

.text {
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    -o-hyphens: auto;
    word-break: break-word;
    hyphens: auto;
    display: flex;
    flex-direction: column;
    justify-content: end;
    grid-column: span 2;
}

.text b {
    font-weight: 400;
}

#footer {
    margin-top: 4.05rem;
    margin-bottom: 6.75rem;
    font-size: 0.75rem;
}

#footer a {
    font-size: 0.75rem;
}

.link {
    font-size: 0.75rem;
    font-weight: 400;
    margin-top: 0.375rem;
    text-align: center;
}