@font-face {
    font-family: "Chinese Rocks";
    src: url(/fonts/font.woff2);
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: rgb(255, 241, 226);
}

h1 {
    font-family: "Chinese Rocks";
    color: rgb(255, 83, 105);
    color: oklch(0.7 0.2393 18);
    text-align: center;
    font-size: 10em;
    line-height: 0.9em;
}

@media (min-width: 600px) {
    h1 {
        font-size: 14em;
    }
}
.email-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #5369FF;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    transition: background-color 0.18s ease, transform 0.12s ease;
}

.email-button:hover,
.email-button:active {
    background-color: #3741d6;
    transform: translateY(1px);
}

.email-button:focus-visible {
    outline: 3px solid oklch(0.9 0.03 270);
    outline-offset: 3px;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.social-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #69FF53;
    color: #4A4A4A;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    transition: background-color 0.18s ease, transform 0.12s ease;
}

.social-button:hover,
.social-button:active {
    background-color: #2ecf01;
    transform: translateY(1px);
}

.social-button:focus-visible {
    outline: 3px solid oklch(0.9 0.03 270);
    outline-offset: 3px;
}

.nav-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.nav-button {
    display: inline-block;
    padding: 8px 16px;
    background-color: transparent;
    color: #5369FF;
    border: 2px solid #5369FF;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    transition: background-color 0.18s ease, color 0.12s ease, transform 0.12s ease;
}

.nav-button:hover,
.nav-button:active {
    background-color: #3741d6;
    color: #fff;
    transform: translateY(1px);
}

.nav-button:focus-visible {
    outline: 3px solid oklch(0.9 0.03 270);
    outline-offset: 3px;
}