body {
    font-family: "Unna", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    margin: 0;
    padding: 0;
    background: var(--black);
}

main {
    margin: -130px 0 0 0;
}

section {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #1d1e22;
    color: #f5f6fa;
    text-shadow: 0 0 10px #000000;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
}

section.light {
    background-color: #f5f6fa;
    color: #1d1e22;
    text-shadow: 0 0 10px #ffffff;
}

section.light blockquote {
    opacity: 0;
}

blockquote.fadeIn {
    animation: fadeIn .3s ease-in forwards;
    animation-delay: 0.1s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

blockquote {
    hanging-punctuation: first last;
    display: grid;
    font-size: 1.5rem;
    font-weight: 200;
    line-height: 1.5;
    position: relative;
    opacity: 0;
}

blockquote p {
    margin: 0;
    font-size: inherit;
}

blockquote strong {
    font-weight: 800;
}

blockquote i {
    font-style: normal;
}

.title {
    font-size: 2rem;
    font-weight: 700;
    font-style: normal;
}

.unna-regular {
    font-family: "Unna", serif;
    font-weight: 400;
    font-style: normal;
}

.unna-bold {
    font-family: "Unna", serif;
    font-weight: 700;
    font-style: normal;
}

.unna-regular-italic {
    font-family: "Unna", serif;
    font-weight: 400;
    font-style: italic;
}

.unna-bold-italic {
    font-family: "Unna", serif;
    font-weight: 700;
    font-style: italic;
}


