* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
    margin: 0;
}

body {
    background:
        radial-gradient(
            circle at center,
            #171717 0%,
            #080808 55%,
            #000000 100%
        );

    color: #ffffff;
    font-family:
        Arial,
        Helvetica,
        sans-serif;
}

.landing-page {
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;

    padding: 30px 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
}

.logo {
    display: block;

    width: min(750px, 90vw);
    max-height: 75vh;

    object-fit: contain;

    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.7));
}

.email {
    display: inline-block;
    margin-top: 24px;

    color: #ffffff;
    font-size: clamp(1.1rem, 3vw, 1.6rem);
    font-weight: 500;
    letter-spacing: 0.04em;

    text-decoration: none;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.email::before {
    content: "✉";
    margin-right: 10px;
    color: #66c62f;
}

.email:hover,
.email:focus-visible {
    color: #66c62f;
    transform: translateY(-2px);
}

.email:focus-visible {
    outline: 2px solid #66c62f;
    outline-offset: 6px;
    border-radius: 3px;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .landing-page {
        padding: 20px 16px;
    }

    .logo {
        width: 96vw;
        max-height: 68vh;
    }

    .email {
        margin-top: 18px;
    }
}

.projects {
    margin-top: 50px;
    text-align: center;
}

.projects h2 {
    color: #66c62f;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.projects a {
    display: block;

    color: #fff;
    text-decoration: none;

    font-size: clamp(1rem, 2vw, 1.2rem);

    padding: 10px 0;

    transition: .2s;
}

.projects a:hover {
    color: #66c62f;
    transform: translateX(6px);
}