/* Reset */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Page */

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 1rem;

    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* subtle depth background */
    background: radial-gradient(
        circle at top,
        #1a1a1a 0%,
        #121212 60%
    );
	user-select: none;
}

/* Layout */

.content {
    text-align: center;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

/* Title */

.svg-title {
    display: block;
    width: 100%;
    max-width: 650px;
    height: auto;
    margin: 0 auto 2rem auto;

    filter: drop-shadow(0 0 6px rgba(255,255,255,0.15));

    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

/* Email */

.email-link {
    display: inline-block;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 400;
    text-decoration: none;
	cursor: pointer;


    transition: 
        transform 0.18s ease,
        text-shadow 0.18s ease;
}

.email-link:hover {
    text-shadow: 0 0 8px rgba(255,255,255,0.40);
}

.copy-feedback {
    display: block;
    margin-top: 0.8rem;
    font-size: 0.9rem;
    color: #aaa;

    opacity: 0;
    transition: opacity 0.25s ease;
}

.copy-feedback.visible {
    opacity: 1;
}

/* Mobile */

@media (max-width: 480px) {

    .email-link {
        font-size: 1.2rem;
    }

}