:root {
    --background: #14171A;
    --text: #F4F4F4;
}

html {
  font-size: 100%;
}


body {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
    background-color: var(--background);
    background-image: radial-gradient(#1C1F22 2px, transparent 0);
    background-size: 30px 30px;
    background-position: -5px -5px;
}



.container {
  width: 100%;
  height: 50%;
}


#main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
}

h1 {
    font-family: "Archivo Black", sans-serif;
    font-weight: 400;
    font-style: normal;
    background-image: linear-gradient(to right, #7B00FF, #8FB3FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: clamp(4rem, 5vw + 1rem, 5rem);
    line-height: 1.05;
    margin: 0;
    padding: 0;
    text-align: center;
}


h2 {
    font-family: "Assistant";
    font-weight: 600;
    font-size: clamp(1.623rem, 2vw + 0.5rem, 2rem);
    line-height: 1.1;
    margin: 0;
    color: var(--text);
}

p {
    font-family: "Assistant";
    font-weight: 400;
    color: var(--text);
    font-size: clamp(0rem, 0.5rem + 1rem, 4rem);
}

svg {
    width: 100%;
    height: 165;
}
#svg1 {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
}

#svg2 {
    position: fixed;
    bottom: 0;
    right: 0;
    rotate: 180deg;
    z-index: 2;
}

@media (max-width: 1000px) {
    svg {
    width: 300%;
    height: 165;
}
#svg1 {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
}

#svg2 {
    position: fixed;
    bottom: 0;
    right: 0;
    rotate: 180deg;
    z-index: 2;
}
}

#center {
    display: flex;
    justify-content: center;
}

#center img {
    width: 40%;
    height: auto;
    max-width: 400px;
    min-width: 200px;
}