body {
    margin: 0;
    padding: 0;
    background: #e6dfd3;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 100vh;
    color: #222;
    text-align: center;
    padding-top: 10vh;

    opacity: 0;
    animation: fadeIn 4.0s ease-out forwards;
    animation-delay: 0.25s;

    background-image:
        radial-gradient(rgba(0,0,0,0.025) 1px, transparent 1px),
        radial-gradient(rgba(0,0,0,0.018) 1px, transparent 1px);
    background-size: 3px 3px, 5px 5px;
}

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

img {
    max-width: 360px;
    height: auto;
    margin-bottom: 45px;
}

a {
    display: inline-block;
    margin: 8px 0;
    padding: 9px 26px;
    font-size: 0.98rem;
    text-decoration: none;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
    border-radius: 3px;
    letter-spacing: 0.6px;
    transition: all 0.25s ease;
}

a:hover {
    opacity: 0.7;
}

.divider {
    width: 100px;
    height: 1px;
    background: rgba(58, 47, 40, 0.18);
    margin-top: 70px;
    margin-bottom: 16px;
}

.lucille {
    font-size: 0.85rem;
    font-style: italic;
    font-family: Georgia, "Times New Roman", serif;
    opacity: 0.6;
    letter-spacing: 0.2px;
    margin-bottom: 40px;
}

