@font-face {
    font-family: "@dressedmolerat font";
    src: url("./arcade-neue.ttf");
}

:root {
    --bg: #0f241f;
    --card: #cff9d4;
    --text: #ffffff;
    --ink: #0d160f;
    --max-menu-width: 420px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg);
    min-height: 100vh;
    font-family: "@dressedmolerat font", sans-serif;
    display: flex;
    justify-content: center;
    padding: clamp(1rem, 4vw, 2.5rem) 1rem;
}

a {
    text-decoration: none;
}

#Menu {
    width: min(92vw, var(--max-menu-width));
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pfp-container {
    margin-top: clamp(0.5rem, 1.5vw, 1.25rem);
    width: clamp(92px, 30vw, 132px);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 50%;
}

.pfp-image {
    background-color: #ffffff;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#title {
    text-align: center;
    margin-top: 0.9rem;
}

#title h1 {
    margin: 0;
    color: var(--text);
    font-size: clamp(1.35rem, 5vw, 2rem);
}

#title h2 {
    margin: 0.5rem 0 0;
    color: var(--text);
    font-size: clamp(0.85rem, 3.2vw, 1.15rem);
}

#icons {
    margin-top: 1rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(0.8rem, 2.8vw, 1.1rem);
}

#icons img {
    width: clamp(26px, 7.2vw, 36px);
    height: clamp(26px, 7.2vw, 36px);
    display: block;
}

.linkContainer {
    margin-top: 0.95rem;
    width: 100%;
    min-height: 62px;
    border: 0;
    border-radius: 14px;
    background-color: var(--card);
    color: var(--ink);
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.16s ease, filter 0.16s ease;
}

.linkContainer:hover {
    transform: translateY(-2px);
    filter: brightness(1.02);
}

.linkContainer:active {
    transform: translateY(0);
}

.h1-Link {
    margin: 0;
    color: var(--ink);
    font-size: clamp(1rem, 3.8vw, 1.2rem);
    line-height: 1.2;
}

@media screen and (min-width: 768px) {
    body {
        padding-top: 2.4rem;
    }

    .linkContainer {
        min-height: 68px;
    }
}

@media screen and (min-width: 1280px) {
    :root {
        --max-menu-width: 460px;
    }

    .linkContainer {
        min-height: 72px;
    }
}
