:root{
    --padding : 25vw;
    --h1-size:6rem;
    --h2-size:2.5rem;
}



.Karla {
  font-family: "Karla", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}

*{
    font-family:Karla, Arial, Helvetica, sans-serif ;
    margin: 0;
    padding: 0;
}

div{

    display:flex;
    flex-direction: column;
}

p{
    font-size: 1.2rem;
    margin-left: 1rem;
}

.wrapper{
    display: flex;
    flex-direction: column;
    height: 100vh;
    margin-right: var(--padding) ;
    margin-left: var(--padding);
    /* background-color: bisque; */
    /* border: solid 1px black; */
}

h1{
    font-size:var(--h1-size) ;
    margin-top: 9rem;
    padding: 0;
    font-weight: 1000;
    position: relative;
    right: 0.3rem;
}

h2{
    position: relative;
    font-weight: 1000;
    font-size: var(--h2-size);
    bottom: 1rem;
    left: 1rem;
}

.logo{
    position: absolute;
    width: 2.5rem;
    border-radius: 1rem;
    margin: 1rem;
}

.content{
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    /* border: 1px solid red; */
}
.headingWrapper{
    position: relative;
}
.mainGradient{
    width: calc(var(--h1-size)*3);
    height: calc(var(--h1-size));
    background-color: red;
    position: absolute;
    top: 9rem;
    z-index: -1;
    filter: blur(8rem);
}

.buttonWrapper{
    position: relative;
}

.buttonGradient{

    width: calc(var(--h2-size)*4);
    height: calc(var(--h1-size));
    background-color: rgb(0, 21, 255);
    position: absolute;
    top: 1rem;
    z-index: -1;
    filter: blur(7rem);

}


.register{
    width: fit-content;
    margin-left: 1rem;
    margin-top: 1rem;
    font-weight: 700;
    font-size: 1em;
}

.mission{
    margin: 0;
    margin-bottom: 1rem;
    padding: 0;
    position: relative;
    bottom: 0;
    top: 1rem;
    left: 0.65rem;
}


/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --padding: 5vw;
        --h1-size: 4rem;
        --h2-size: 2rem;
    }

    .wrapper {
        margin-right: var(--padding);
        margin-left: var(--padding);
    }

    h1 {
        font-size: var(--h1-size);
        margin-top: 5rem;
        left: 0.2rem;
    }

    h2 {
        font-size: var(--h2-size);
        bottom: 0.5rem;
        /* left: 0.5rem; */
    }

    .mainGradient {
        width: calc(var(--h1-size) * 2.5);
        height: calc(var(--h1-size));
        top: 5rem;
        filter: blur(6rem);
    }

    .buttonGradient {
        width: calc(var(--h2-size) * 3.5);
        height: calc(var(--h1-size));
        top: 0.5rem;
        filter: blur(5rem);
    }

}

@media (max-width: 480px) {
    :root {
        --h1-size: 3rem;
        --h2-size: 1.5rem;
    }

    h1 {
        font-size: var(--h1-size);
        left: 0.5rem;
    }

    h2 {
        font-size: var(--h2-size);
        bottom: 0.2rem;
    }

    .mainGradient, .buttonGradient {
        filter: blur(4rem);
    }

    .wrapper {
        margin-right: 2vw;
        margin-left: 2vw;
    }

    
}

/* Footer Styling */
.footer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    position: fixed;
    align-items: center;
    justify-self: flex-end;
    width: fit-content;
    gap: 1rem;
    flex-wrap: wrap;
    background-color: #000;
    color: #fff;
    margin-top: 5rem;
    padding-top: 1rem;
    padding:1rem;
    border-radius: 1rem;
    top: 73vh;

    
   
}

.footer-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
}

.footer-link:hover {
    text-decoration: underline;
}


