:root {
    --primary-color: #00E0FF;
    --text-color: #ffffff;
    --secondary-text-color: #e0e0e0;
    --background-start: #000000;
}

body::before, body::after {
    content: "";
    position: absolute;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: cover; /* Ensure SVG covers the area without being cut off */
}

body::before {
    background-image: url('images/left.svg');
    bottom: 0;
    left: 0;
    width: 25%; /* Adjust based on your design needs */
    height: 50vh; /* Adjust based on your design needs */
}

body::after {
    background-image: url('images/right.svg');
    top: 0;
    right: 0;
    width: 35%; /* Adjust based on your design needs */
    height: 100vh; /* Adjust based on your design needs */
}


@media (min-width: 768px) and (max-width: 1400px) {
    body {
        background: #000 !important;
        border-radius: 20px;
    }
}

@media (max-width: 768px) {
    body::before, body::after {
        width: 50%; /* Larger percentage for smaller screens */
        height: 50vh;
    }

    body {
        background: #000 !important;
        border-radius: 20px;
    }

    body header h1 {
        font-size: 32px;
    }

    body header img {
        height: 30px;
    }

   body main h2 {
        font-size: 64px;
    }
}

@media (max-height: 768px) {
    body header {
        top: 10px; /* Reduce the top margin */
        padding: 0 10px; /* Reduce padding */
    }

    body header h1 {
        font-size: 28px; /* Slightly smaller header font */
        margin-bottom: 5px; /* Reduce space below header */
    }

    body header img {
        height: 25px; /* Smaller logo */
    }

    body main h2 {
        font-size: 48px; /* Reduce main heading font size */
    }

    body main p {
        font-size: 16px; /* Smaller paragraph text */
        margin: 5px 0; /* Reduce margin */
    }

    body .social-icons {
        gap: 5px; /* Reduce spacing between social icons */
    }

    body .social-icons img {
        height: 30px; /* Smaller social icons */
    }
}

/* NEW: Ultra-small screens adjustment */
@media (max-width: 480px) and (max-height: 320px) {
    body header {
        top: 5px;
        gap: 5px; /* Smaller gap between header elements */
    }

    body header h1 {
        font-size: 20px; /* Much smaller header text */
    }

    body header img {
        height: 20px; /* Smaller logo */
    }

    body main {
        gap: 5px; /* Reduce gap between main elements */
        padding: 0 5px; /* Smaller padding */
    }

    body main h2 {
        font-size: 36px; /* Smaller main heading */
        margin: 0; /* Remove any extra margin */
    }

    body main p {
        font-size: 12px; /* Smaller paragraph text */
        line-height: 1.1; /* Tighten line spacing */
        max-width: 90%; /* Adjust width to fit the screen */
        margin: 5px 0; /* Smaller margin */
    }

    body .social-icons {
        gap: 2px; /* Reduce gap between social icons */
    }

    body .social-icons img {
        height: 20px; /* Smaller social icons */
        max-width: 20px;
    }
}

body, html {
    height: 100%;
    font-family: 'Arial', sans-serif;
    background: #000;
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

body {
    background: #00000000;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    position: fixed;
    top: 20px; /* Adjust this value to control the space above the header */
    left: 0;
    right: 0;
}

header h1 {
    color: #FFF;
    font-family: Inter;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

header img {
    width: auto;
    height: 45px;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}

main h2 {
    text-align: center;
    font-family: Inter;
    font-size: 96px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    /*background: linear-gradient(90deg, #00E0FF 0%, #00A5BC 100%);*/
    background: var(--primary-color);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: auto;
}

main p {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 70%;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 10px;
}

.social-icons a {
    margin: 0 0.5em;
    background-color: #FFF;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons img {
    width: auto;
    height: 40px;
    max-width: 40px;
}
