@font-face {
    font-family: "Zed Iosevka";
    src: url("fonts/ZedPlexMono.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Zed Iosevka Bold";
    src: url("fonts/ZedPlexMono-Bold.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family:
        "Zed Iosevka",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;
    background-color: #ffffff;
    color: #000000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.title {
    font-size: 6rem;
    font-weight: 900;
    letter-spacing: 0.3rem;
    margin-bottom: 2rem;
    color: #000000;
    font-family:
        "Zed Iosevka Bold",
        Futura,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;
}

.subtitle {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: #333333;
    line-height: 1.6;
    font-family:
        "Zed Iosevka",
        Futura,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;
}

.buttons {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: 2px solid #000000;
    background-color: #ffffff;
    color: #000000;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 150px;
    text-transform: lowercase;
    border-radius: 50px;
}

.button:hover {
    background-color: #000000;
    color: #ffffff;
}

.content {
    margin: 3rem 0;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333333;
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.content ol {
    list-style-position: outside;
    padding-left: 2rem;
}

.content ol li {
    margin-bottom: 1.5rem;
}

.content ol li:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .title {
        font-size: 3rem;
        letter-spacing: 0.2rem;
        font-family:
            "Zed Iosevka Bold",
            Futura,
            -apple-system,
            BlinkMacSystemFont,
            "Segoe UI",
            Arial,
            sans-serif;
    }

    .subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
        font-family:
            "Zed Iosevka",
            Futura,
            -apple-system,
            BlinkMacSystemFont,
            "Segoe UI",
            Arial,
            sans-serif;
    }

    .button {
        min-width: 250px;
        font-size: 0.9rem;
    }
}
