@import url(https://fonts.bunny.net/css?family=jetbrains-mono:300,400,500,600,700,800);

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

body {
    font-family: "JetBrains Mono", monospace;
    background: #000;
    color: #fff;
    background-image:
        linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
}

.intro_section {
    height: 100vh;
}

.header, .hero, .section, footer {
    padding: 25px 50px;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

html:has(#menu:target),
body:has(#menu:target) {
    overflow: hidden;
}

.nav_logo, .nav_link, .nav_toggle, .nav_close {
    text-decoration: none;
    color: #fff;
    font-size: 20px;
}

.nav_menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
}

#menu:target {
    opacity: 1;
    pointer-events: auto;
}

.nav_close {
    position: absolute;
    top: 25px;
    right: 50px;
}

.hero {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    height: 75%;
    justify-content: center;
    gap: 25px;
    align-items: flex-start;
}

.hero_status {
    border: 1px solid #fff;
    padding: 5px 10px;
    font-size: 16px;
}

.hero_title {
    font-size: 72px;
}

.hero_description {
    font-size: 20px;
}

.hero_button {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 5px 10px;
    text-decoration: none;
    font-size: 16px;
}

.section {
    margin-bottom: 100px;
}

.section_header {
    display: inline-block;
    font-size: 24px;
    margin-bottom: 100px;
    border-top: 2px solid #CFCFCF;
    border-bottom: 2px solid #CFCFCF;
    padding: 10px 0;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.row {
    font-size: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-left: 5px solid #CFCFCF;
    padding: 0 10px;
    word-wrap: anywhere;
}

.privacy_content {
    font-size: 20px;
    border-left: 5px solid #CFCFCF;
    padding: 0 10px;
}

footer {
    font-size: 20px;
    display: flex;
    justify-content: space-between;
}

.footer_link {
    text-decoration: none;
    margin-right: 25px;
    color: #fff;
}

@media (max-width: 860px) {
    .header, .hero, .section, footer {
        padding: 25px;
    }

    .hero_title {
        font-size: 36px;
        word-break: break-word;
    }

    .hero_description,
    .privacy_content {
        font-size: 18px;
    }

    .section_header {
        font-size: 20px;
        word-break: break-word;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .row {
        font-size: 18px;
    }

    footer {
        flex-direction: column;
        gap: 5px;
    }

    .footer_links,
    .footer_content {
        display: flex;
        flex-direction: column;
    }
}
