:root {
    font-family: "Space Grotesk", sans-serif;
    background: black;
    color: white;
    scroll-behavior: smooth;
}

body {
    margin: 0;
}

h2 {
    font-size: 44px;
}

.hero-section-container {
    background-image: url(images/hero.webp);
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: "Playfair Display", serif;
    position: relative;
}

.hero-section-container h1 {
    font-size: 72px;
    margin: 0;
    position: relative;
    z-index: 2;
    font-weight: 700;
}

.hero-section-container p {
    font-size: 24px;
    position: relative;
    z-index: 2;
}

.hero-section-button {
    position: relative;
    z-index: 2;
    padding: 10px 20px;
    font-size: 20px;
    border: none;
    cursor: pointer;
    background: white;
    color: black;
    text-decoration: none;
}

.fa-angle-down {
    padding-top: 40px;
    font-size: 28px;
    color: white;
    position: relative;
    z-index: 2;
}

.hero-section-overlay {
    background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
}

.features-section-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 80px;
}

.features-section-first {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.features-section-image-1 {
    max-width: 500px;
}

.features-section-image-1 img {
    width: 100%;
    height: auto;
    display: block;
}

.features-section-second {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.features-section-image-2 {
    max-width: 500px;
}

.features-section-image-2 img {
    display: block;
    height: auto;
    width: 100%;
}

.features-list {
    max-width: 600px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.features-individual {
    background: #171717;
    padding: 10px 20px;
    border: none;
    margin: 5px;
}

.features-icon {
    font-size: 24px;
    padding-right: 10px;
}

.nodes-information {
    text-align: center;
    max-width: 950px;
    margin: 0 auto;
    font-size: 20px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgb(255, 255, 255, 0.5);
}

.protocols-section-container {
    display: flex;
    flex-direction: column;
    max-width: 950px;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.protocols-section-division {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.protocol-individual {
    background: #171717;
    padding: 10px 20px;
    border: none;
    margin: 5px;
    padding-bottom: 30px;
}

.protocol-individual-paragraph {
    background: #000000;
    padding: 5px 20px 5px 20px;
    border: none;
}

.privacy-policy-container {
    text-align: center;
    max-width: 950px;
    margin: 0 auto;
    font-size: 18px;
    margin-top: 80px;
    margin-bottom: 40px;
    border-top: 1px solid rgb(255, 255, 255, 0.5);
}

footer {
    text-align: center;
    background: #171717;
    padding: 20px;
}

@media (max-width: 1024px) {
    .hero-section-container h1 {
        font-size: 36px;
    }
    .hero-section-container p {
        font-size: 18px;
        text-align: center;
        padding: 10px;
    }
    .features-section-container {
        margin: 20px;
    }
    .features-section-container h2 {
        font-size: 28px;
    }
    .features-list {
        display: grid;
        grid-template-columns: 1fr;
    }
    .features-section-first {
        flex-direction: column;
    }
    .features-section-second {
        flex-direction: column;
    }
    .nodes-information {
        font-size: 18px;
        padding: 10px;
    }
    .protocols-section-division {
        display: grid;
        grid-template-columns: 1fr;
    }
    .protocols-section-container h2 {
        font-size: 28px;
    }
    .privacy-policy-container h2 {
        font-size: 28px;
    }
    .privacy-policy-container p {
        font-size: 18px;
        padding: 10px;
    }
    .features-section-second {
        margin-top: 0;
    }
}