:root {
    --text: #191919de;
    --text-transparent: #1919194a;
    --bg-color: #FFFFFF;
    --bg-transparent: #ffffff1f;
    --bg-semi-transparent: #ffffffb0;
    --highlight-one: #ff01dd;
    --highlight-two: #00ff68;
    --highlight-three: #e1ff00;
    --header-mix-blend-mode: 'color-burn';
    --footer-bg: var(--text);
    --footer-text: var(--bg-color);
}


@media (prefers-color-scheme: dark) {
    :root {
        --text: #FFFFFFde;
        --text-transparent: #ffffff1f;
        --bg-color: #191919;
        --bg-transparent: #1919194a;
        --bg-semi-transparent: #19191987;
        --highlight-one: #ff01dd;
        --highlight-two: #00ff68;
        --highlight-three: #e1ff00;
        --header-mix-blend-mode: 'color-dodge';
        --footer-bg: var(--bg-color);
        --footer-text: var(--text);
    }
}
[data-theme='dark'] {
    --text: #FFFFFFde;
    --text-transparent: #ffffff1f;
    --bg-color: #191919;
    --bg-transparent: #1919194a;
    --bg-semi-transparent: #19191987;
    --highlight-one: #ff01dd;
    --highlight-two: #00ff68;
    --highlight-three: #e1ff00;
    --header-mix-blend-mode: 'color-dodge';
    --footer-bg: var(--bg-color);
    --footer-text: var(--text);
}
[data-theme='light'] {
    --text: #191919de;
    --text-transparent: #1919194a;
    --bg-color: #FFFFFF;
    --bg-transparent: #ffffff1f;
    --bg-semi-transparent: #ffffffb0;
    --highlight-one: #ff01dd;
    --highlight-two: #00ff68;
    --highlight-three: #e1ff00;
    --header-mix-blend-mode: 'color-burn';
    --footer-bg: var(--text);
    --footer-text: var(--bg-color);
}


body {
    margin: 0px;
    background: var(--bg-color);
    color: var(--text);
    font-family: serif;
    transition: all 1s;
}

/**
 * LENIS
 */
html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}


  


.scroll-container {
    /* border: 1px solid purple; */
    /* display: flex;

    justify-content: center;
    align-items: center; */
}

.above-fold::before {
    animation: bounce 1s ease infinite;
    bottom: 1rem;
    color: var(--highlight-one);
    mix-blend-mode: exclusion;
    content: '╲╱';
    font-size: 2rem;
    opacity: 0.5;
    position: absolute;
    top: 65vh;
    height: 50px;
}

@keyframes bounce {
    50% {
      transform: translateY(-50%);
    }
  }

.above-fold {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;   /* space between triggers two circles ontop of each other effect */

    /* background-image: url('./img/294297_Holographic background texture, minimalist, textur_xl-1024-v1-0.png'); */
    /* background-blend-mode: color-burn; */
    /* background: linear-gradient(45deg, #fbe600, #ce00ff); */
    /* background: linear-gradient(180deg, #e1ff00, #ff00de);
    background-size: cover; */
    height: 100vh;
    width: 100%;
    
}
.shrinker { 
    /* filter: invert(1); */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;   /* space between triggers two circles ontop of each other effect */
    
    /* background-image: url('./img/294297_Holographic background texture, minimalist, textur_xl-1024-v1-0.png'); */
    /* background-blend-mode: color-burn; */
    /* background: linear-gradient(45deg, #fbe600, #ce00ff); */
    background: linear-gradient(180deg, var(--highlight-three), var(--highlight-one));
    /* background: linear-gradient(180deg, #FFFFFF, #ff00de); */
    background-size: cover;
    height: 100vh;
    width: 100%;
    /* margin: auto auto !important; */
    /* width: 80vw; */
    /* margin-top: 5vh !important; */

    /* -webkit-animation: rainbow 5s steps(36) infinite; */
  }
  
  @-webkit-keyframes rainbow {
     from { -webkit-filter:hue-rotate(10deg); }
       to { -webkit-filter:hue-rotate(360deg); }
  }
  
  @keyframes rainbow {
   from {
      -webkit-filter:hue-rotate(10deg);
              filter:hue-rotate(10deg);
      }
    to {
      -webkit-filter:hue-rotate(360deg);
              filter:hue-rotate(360deg);
      }
  }

/* .above-fold.minified {
    background: red;
    top: 0px !important;
    display: block !important;
    height: 200px !important;
    width: 200px !important;
    position: absolute;
} */

.header {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    /* display: none; */
    color: var(--bg-color);
    /* filter: invert(1); */
    /* width: 60%; */
    text-align: center;
    mix-blend-mode: var(--header-mix-blend-mode);
}
.header .logo {
    font-size: 3rem;
    /* filter: invert(1); */
}
.header svg {
    fill: var(--bg-color);
}

.tagline {
    /* position: absolute;
    top: 80vh;
    opacity: 0;
    color: white; */
    /* color: white; */
    /* display: flex;
    justify-content: center;
    width: 100%;
    align-items: center; */
    font-size: 1.25rem;
}

.circles {
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    /* opacity: 0; */
}
.main-circle {
    mix-blend-mode: difference;
}
.circle svg circle {
    fill: var(--highlight-two);
}
.line {
    width: 100%;
    height: 25px;
    background-color: var(--highlight-one);
    margin: 10px 0px;
}


.banner-wrapper {
    /* background: white; */
    padding-top: 10%;
    padding-bottom: 10%;
    padding-left: 5%;
    padding-right: 5%;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
}
.banner {
    /* margin-top: 850px; */
    font-size: 3rem;
    color: var(--text);
    padding-top: 50px;
    padding-left: 10%;
    padding-bottom: 50px;
    /* width: 40%; */
    max-width: 75%;

    /* gradient text */
    /* background: -webkit-linear-gradient(#fff, #c8c8c8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent; */
}

.banner-wrapper.one {
    /* background: -webkit-linear-gradient(#fff, #0079ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent; */
    margin-top: 100px;
    text-align: right;
}
.banner-wrapper.two {
    /* background: -webkit-linear-gradient(#fff, #00ff2f);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent; */
    text-align: left;
}
.banner-wrapper.three {
    /* background: -webkit-linear-gradient(#fff, #fffb00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent; */
    text-align: right;
}
.banner-wrapper.four {
    /* background: -webkit-linear-gradient(#fff, #ff00fb);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent; */
    text-align: left;
}


.banner-wrapper .circle{
    /* width: 50%; */
    /* position: absolute; */
}

.banner-wrapper img {
    border: 1px solid var(--text);
    width: 90%;
    border-radius: 20px;
    margin-top: 10%;
}


.panel {
    margin: 25% 5%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: left;
    /* text-align: justify; */
    /* margin: 25% 10% 10% 10%; */
    /* background: linear-gradient(45deg, #ededed, transparent); */
    /* border-radius: 10px; */
    padding: 20px;
    border: 1px solid var(--text-transparent);
    font-size: 1.75rem;
}

.panel-header {
    font-family: sans-serif;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.panel-header .circle-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}

.panel-content {
    display: flex;
    flex-direction: column;
}
.about .panel-content {
    display: block;
}
.panel-content img {
    float: left;
    width: 150px;
    height: 150px;
    margin-right: 5%;
    border: 1px solid var(--text);
    /* border-radius: 10px; */
    border-top-left-radius: 50% 5%;
    border-top-right-radius: 50% 5%;
    border-bottom-left-radius: 50% 5%;
    border-bottom-right-radius: 50% 5%;
}

.contact {
    /* height: 300px; */
    /* display: flex; */
    /* justify-content: space-evenly; */
    /* flex-direction: column; */
    align-items: left;
    /* background: #ed1285;
    color: white; */
    /* text-align: justify; */
    /* margin: 0px; */
    width: unset;
    /* text-align: center; */
    /* font-family: sans-serif; */
}

.contact a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: large;
    /* width: 100%; */
    text-align: center;
    /* margin-bottom: 50px; */
    margin-top: 25px;
    /* display: block;
    padding: 15% 0%;
    padding-top: 50px; */
    background: var(--highlight-two);
    color: black;
    border: 1px solid var(--text-transparent);
    border-radius: 10px;
    padding: 15px;
    font-family: sans-serif;
}

.footer {
    display: flex;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    font-family: sans-serif;
    
    /* workaround for lenis not scrolling to bottom */
    /* margin-bottom: 350px; */
    
    background: var(--footer-bg);
    /* background: linear-gradient( 180deg, var(--black), var(--green) ); */
    color: var(--footer-text);
    /* margin-top: 25%; */
    border-top: 1px solid var(--bg-transparent);
}

.footer-content {
    padding: 40px 70px;
}
.footer .credits {
    letter-spacing: 1px;
    /* font-size: large; */
    text-transform: uppercase;
    padding-bottom: 15px;
}
.footer .detail {
    font-size: small;
    font-weight: lighter;
}
.footer .darkModeButton {
    display: flex;
}
.footer .darkModeButton img {
    width: 40px;
    padding: 20px;
    filter: invert(1);
}



/* 
.logo {
    width: 20%;
    height: 100%;
    float: left;
} */

.box {
    /* background-color: blue; */
    /* width: 80%; */
    /* height: 5%; */
    /* margin: 1%; */
}



/* Small devices (phones, 576px and up) */
@media (max-width: 576px) {
    .banner {
        font-size: 2.5rem;
    }
    h1 {
        /* font-size: 1.5rem !important; */
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .banner-wrapper {
        width: 50%;
        margin-left: auto;
        margin-right: auto;
    }
    .panel {
        width: 50%;
        margin-left: auto;
        margin-right: auto;
    }
    .panel .panel-header .circle {
        width: 20%;
    }
    .panel .panel-header circle {
        r: 15;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .banner-wrapper {
        width: 50%;
        margin-left: auto;
        margin-right: auto;
    }
    .panel {
        width: 50%;
        margin-left: auto;
        margin-right: auto;
    }
    .panel .panel-header .circle {
        width: 20%;
    }
    .panel .panel-header circle {
        r: 30;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .banner-wrapper {
        width: 30%;
        margin-left: auto;
        margin-right: auto;
    }
    .panel {
        width: 30%;
        margin-left: auto;
        margin-right: auto;
    }
}




.scroll-wrapper {
    overflow: hidden;
}
.scroller {
    /* padding-top: 150px; */
    display: flex;
    flex-direction: row;
}
.scroller .text {
    padding: 10px;
    background: var(--text);
    color: var(--bg-color);
    text-align: center;
    font-family: sans-serif;
    font-weight: bold;
}


h1 {
    text-transform: uppercase;
    font-size: 2rem;
    letter-spacing: 2px;
    white-space: nowrap;
}
