@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700');

:root {
--color-bg1: rgb(8, 10, 15);
--color-bg2: rgb(0, 17, 32);
--color1: 18, 113, 255;
--color2: 107, 74, 255;
--color3: 100, 100, 255;
--color4: 50, 160, 220;
--color5: 80, 47, 122;
--color-interactive: 140, 100, 255;
--circle-size: 80%;
--blending: hard-light;
}

* {
margin:0;
padding:0;
outline:none;
list-style:none;
text-decoration:none;
box-sizing:border-box;
color:#FFF;
background: transparent;
border:none;
}

html, body {
font-family: 'Dongle', sans-serif;
margin: 0;
padding: 0;
height: 100%;
width: 100%;
}

body {
background: #FFF;
font-family: 'Montserrat', sans-serif;
overflow: hidden;
}

h1, h2, h3 {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
}

.card {
display: flex;
position: absolute;
z-index: 10;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
user-select: none;
max-width: 600px;
padding: 48px;
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
border-radius: 60px;
box-shadow: 0 4px 90px rgba(0,0,0,0.1);
overflow: hidden;
&:before {
    content: "";
    display: flex;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgb(255,255,255);
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 34%, rgba(255,255,255,1) 89%, rgba(255,255,255,0) 100%);
    opacity: 0.3;
    filter: blur(.5px);
    mix-blend-mode: hard-light;}


.noise {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    opacity: 0.1;
}

.content {
    position: relative;
    z-index: 2;
    text-shadow: -3px 0px 2px rgba(0,0,0,0.1);
}
}

h1 {
font-size: 3rem;
margin-bottom: 16px;
text-align: center;
}

p {
line-height: 1.6;
text-align: justify;
}

@keyframes moveInCircle {
0% {
    transform: rotate(0deg);
}
50% {
    transform: rotate(180deg);
}
100% {
    transform: rotate(360deg);
}
}

@keyframes moveVertical {
0% {
    transform: translateY(-50%);
}
50% {
    transform: translateY(50%);
}
100% {
    transform: translateY(-50%);
}
}

@keyframes moveHorizontal {
0% {
    transform: translateX(-50%) translateY(-10%);
}
50% {
    transform: translateX(50%) translateY(10%);
}
100% {
    transform: translateX(-50%) translateY(-10%);
}
}

.gradient-bg {
width: 100vw;
height: 100vh;
position: relative;
overflow: hidden;
background: linear-gradient(40deg, var(--color-bg1), var(--color-bg2));
top: 0;
left: 0;

.svgBlur {
    display: none;
}

.noiseBg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    mix-blend-mode: soft-light;
    opacity: 0.3;
}
.gradients-container {
    filter: url(#goo) blur(40px) ;
    width: 100%;
    height: 100%;
}

.g1 {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color1), 0.8) 0, rgba(var(--color1), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);

    width: var(--circle-size);
    height: var(--circle-size);
    top: calc(50% - var(--circle-size) / 2);
    left: calc(50% - var(--circle-size) / 2);

    transform-origin: center center;
    animation: moveVertical 30s ease infinite;

    opacity: 1;
}

.g2 {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color2), 0.8) 0, rgba(var(--color2), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);

    width: var(--circle-size);
    height: var(--circle-size);
    top: calc(50% - var(--circle-size) / 2);
    left: calc(50% - var(--circle-size) / 2);

    transform-origin: calc(50% - 400px);
    animation: moveInCircle 20s reverse infinite;

    opacity: 1;
}

.g3 {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color3), 0.8) 0, rgba(var(--color3), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);

    width: var(--circle-size);
    height: var(--circle-size);
    top: calc(50% - var(--circle-size) / 2 + 200px);
    left: calc(50% - var(--circle-size) / 2 - 500px);

    transform-origin: calc(50% + 400px);
    animation: moveInCircle 40s linear infinite;

    opacity: 1;
}

.g4 {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color4), 0.8) 0, rgba(var(--color4), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);

    width: var(--circle-size);
    height: var(--circle-size);
    top: calc(50% - var(--circle-size) / 2);
    left: calc(50% - var(--circle-size) / 2);

    transform-origin: calc(50% - 200px);
    animation: moveHorizontal 40s ease infinite;

    opacity: 0.7;
}

.g5 {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color5), 0.8) 0, rgba(var(--color5), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);

    width: calc(var(--circle-size) * 2);
    height: calc(var(--circle-size) * 2);
    top: calc(50% - var(--circle-size));
    left: calc(50% - var(--circle-size));

    transform-origin: calc(50% - 800px) calc(50% + 200px);
    animation: moveInCircle 20s ease infinite;

    opacity: 1;
}

.interactive {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color-interactive), 0.8) 0, rgba(var(--color-interactive), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);

    width: 100%;
    height: 100%;
    top: -50%;
    left: -50%;

    opacity: 0.7;
}
}

/* Additional styles for the new footer box */
.footer-box {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    background-color: var(--color-bg1);
    position: center;
    bottom: 0px; /* Adjust to sit above the footer */
    width: 100%;
    box-shadow: 0 -2px 10px rgba(255, 255, 255, 0.199);
    z-index: 200; /* Ensure it sits above other elements */
}

  /* Additional styles for the new footer box */
.footer-box {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    background-color: transparent;
    position: absolute;
    bottom: 0px; /* Adjust to sit above the footer */
    width: 100%;
    box-shadow: 0 -2px 10px rgba(248, 243, 243, 0);
    z-index: 200; /* Ensure it sits above other elements */
}

.footer-box .social-card {
    background-color: transparent;
    border-radius: 8px;
    padding: 10px 20px;
    margin: 0 10px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.158);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-box .social-card:hover {
    transform: translateY(-5px);
}

.footer-box .social-card a {
    text-decoration: none;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500.3;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.footer-box .social-icon {
    width: 24px;
    height: 25px;
    margin-right: 8px;
}