html {
    scroll-behavior: auto;
    scroll-padding-top: 80px;
}

body {
    margin: 0;
}

section {
    scroll-margin-top: 80px;
}

.serif-title {
    font-family: Georgia, "Times New Roman", serif;
}

.placeholder {
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
}
.reveal {
    opacity: 0;
        transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

