* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #ffffff;
    color: #000000;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", system-ui, sans-serif;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-font-smoothing: antialiased;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.logo {
    font-size: 48px;
    line-height: 1.1;
}

.logo-mad {
    font-weight: 900;
    letter-spacing: -0.04em;
}

.logo-suffix {
    font-weight: 200;
}

.links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.links a {
    color: #000;
    text-decoration: none;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: opacity 0.3s ease;
}

.links a:hover {
    opacity: 0.4;
}

@media (max-width: 640px) {
    main {
        gap: 2.5rem;
    }

    .logo {
        font-size: 34px;
    }

    .links {
        gap: 1.5rem;
    }

    .links a {
        font-size: 18px;
    }
}
