@import url('https://fonts.googleapis.com/css2?family=Azeret+Mono:wght@400;700&display=swap');

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

body {
    background-color: #000000;
    color: #FFFFFF;
    font-family: 'Azeret Mono', monospace;
    text-transform: uppercase;
    line-height: 1.6;
}

main {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

header {
    margin-bottom: 4rem;
    text-align: center;
}

h1 {
    font-size: clamp(3rem, 12vw, 8rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.subtitle {
    font-size: clamp(1.25rem, 4vw, 2rem);
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.8;
    text-align: center;
}

.closing {
    font-size: clamp(0.875rem, 2vw, 1rem);
    line-height: 1.8;
    letter-spacing: 0.03em;
    text-align: left;
    margin-top: 2rem;
    margin-bottom: 4rem;
}

.thanks {
    margin-bottom: 4rem;
}

.thanks p {
    font-size: clamp(0.875rem, 2vw, 1rem);
    line-height: 1.8;
    letter-spacing: 0.03em;
}

.founders h2 {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.founder {
    margin-bottom: 2rem;
}

.founder h3 {
    font-size: clamp(0.875rem, 2vw, 1rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.founder ul {
    list-style: none;
}

.founder li {
    margin-bottom: 0.25rem;
}

.founder a {
    color: #FFFFFF;
    text-decoration: underline;
    text-underline-offset: 0.2em;
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    letter-spacing: 0.03em;
    transition: opacity 0.2s ease;
}

.founder a:hover {
    opacity: 0.7;
}

@media (max-width: 480px) {
    main {
        padding: 3rem 1.5rem;
    }

    header {
        margin-bottom: 3rem;
    }

    .thanks {
        margin-bottom: 3rem;
    }
}
