

@font-face {
    font-family: Neue Kaine Variable;
    src: url('../font/Neue Kaine Variable.ttf');
  }

*{
  box-sizing: border-box;
  margin: 0;
  padding:0;
}

:root {
        --black: #1C1818;
        --white: #F1F1F1;
        --abcwght: 900;
        
}
[data-theme="dark"] {
    --black: #F1F1F1;
    --white: #1C1818;
}

html{
    scrollbar-width: none;
    transition: color 0.5s;
    transition: background-color 0.5s;
    overscroll-behavior: none;
 }


body{
    font-family: Neue Kaine Variable;
    font-size: 32px;
    font-weight: 483;
    background-color: var(--white);
    color: var(--black);
    margin: 0px;
    transition: color 0.5s;
    transition: background-color 0.5s;

}  

body::-webkit-scrollbar{
    display: none; 
}

.vh-screen{
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: background-color 0.5s;
}

.texture{
    position: fixed;
    height: 100lvh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("../img/GC3k8BBWQAASJfA.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 10;
    pointer-events: none;
    opacity: 0.5;
    mix-blend-mode: exclusion;
    transition: all 0.1s ease;

}

.top-bar{
    position: fixed;
    width: 100vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    z-index: 2;
}

.top-bar > div{
    margin: 0px 20px;
}

.logo{
    text-align: left;
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
}

#switch-box{
    display: flex;
    align-items: center;
    justify-content: end;
       
}

#switch-box div{
    width: 20px;
    height: 20px;
}

.switch-left{
    background-color: var(--black);
    border: var(--white) 1px solid;
    border-right: none;

}

.switch-right{
    background-color: var(--white);
    border: var(--black) 1px solid;
    border-left: none ;
}

.kaine-hero{
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.kaine-hero > div{
    width: 100%;
}

.neue, .kaine{
    font-size: 256px;
    line-height: 0.75em;
    font-weight: 900;
}

.kaine-text{
    font-size: 24px;
    font-weight: 600;
    margin-left: 20px;
    margin-top: -20px;
}

.dark-bg{
    background-color: var(--black);
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: background-color 0.5s;
}

.light-bg{
    background-color: var(--white);
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: background-color 0.5s;
}

#vh-s1{
    padding: 60px; /* AAAAAAAAAAAAAAAAAAA */
}

.weight-box{
    display: flex;
    align-items: end;
    justify-content: end;
    width: 1100px;
    color: var(--white);
    column-gap: 40px;
}

.weights{
    text-transform: uppercase;
    width: 400px;

}

.weights > div{
    cursor: pointer;
}

.weight-active{
 text-decoration: solid underline var(--white) 1px;
}

#light{ font-weight: 400 ;}
#regular{ font-weight: 483 ;}
#medium{ font-weight: 566 ;}
#semi-bold{ font-weight: 650 ;}
#bold{ font-weight: 733 ;}
#extra-bold{ font-weight: 816 ;}
#black{ font-weight: 900 ;}

#variable-test{
    font-size: 360px;
    line-height: 0.577em;
    text-align: right;
    transition: all 0.2s ease;
    font-weight: 483;
    
}

.bg2-relative{
    position: relative;
}

.rect-bg{
    position: absolute;
    width: 40%;
    height: 80%;
    border: var(--white) 1px solid;
}

.abc{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    font-size: 6vw;
    line-height: 0.5em;
}

.abc .char{
    font-weight: var(--abcwght);
}

#dark-bg3{
    padding-left: 60px;
    padding-right: 60px;
}
 
.diacritic-box{
    display: flex;
    height: 80vh;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.diacritic{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.diacritic > div{
    font-size: 128px;
    font-weight: 900;
    text-align: center;
    line-height: 1.2em;
}

.cube{
    width: 20px;
    height: 20px;
    background-color: var(--black);
    margin: 60px 0px;

}

.k-poop{
    letter-spacing: 4px;
}

.oe-poop{
    letter-spacing: -2px;
}

.mark-box{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    padding: 0px 120px;
}

.mark-title{
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.mark-title > div{
    font-size: 128px;
    font-weight: 900;

}

.mark-text-box{
    display: flex;
    justify-content: space-between;
    height: 400px;
    width: 100%;
}

.mark-para{
    font-size: 20px;
    font-weight: 600;
    width: 40%;
    text-align: justify;
    margin-right: 20px;
}
.mark-border{
    border: var(--black) 1px solid;
    display: flex;
    align-items: end;
    width: 60%;
    padding: 20px;
    text-align: right;
    font-weight: 900;
    line-height: 1em;
    text-transform: uppercase;
}

#vh-s5{
    padding-left: 60px;
    padding-right: 60px;
    padding-top: 60px;
}

.footer-box{
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 60%;
    color: var(--white);
    justify-content: space-between;

}

#footerid{
    justify-content: end;
}

.download-link{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

}

.download-link > a{
    text-decoration: none;
    color: var(--white);
    font-size: 128px;
    line-height: 1em;
    font-weight: 900;
    transition: all 0.3s ease;
}

.download-link > a:hover{
    transform-origin: center;
    letter-spacing: 20px;
}

.download-link > div{
    font-size: 32px;
    font-weight: 400;
    margin-top: -20px;
    transition: 0.3s ease all;
}

.download-link:hover > div{
    transform-origin: center;
    letter-spacing: 40px;
    word-spacing:20px ;
}


.nav-box{
    display: flex;
    width: 600px;
    justify-content: space-between;
    align-items: center;
}

.nav-box > a{
    text-decoration: none;
    color: var(--white);
    font-size: 24px;
    line-height: 1em;
    font-weight: 400;
    transition: all 0.3s ease-in-out;

}

.uni-stuff{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 60px;
    margin-bottom: 40px;
}

.uni-stuff > a{
    text-decoration: none;
    
}

.svg object {
    width: 100%;
    height: 100%;
    mix-blend-mode: difference;
    opacity: 0.9;
  }

a.svg {
    position: relative;
    display: inline-block; 
  }


  a.svg:after {
    content: ""; 
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left:0;
  }
#back-top{
    font-weight: 900;
    transition: all 0.3s ease-in-out;
    font-size: 32px;
    width: 50px;
    height: 50px;
    text-align: center;
    cursor: pointer;
}
#back-top:hover{
    transform-origin: center;
    transform: translateY(-20px);

}

#dwnld-btn{
    cursor: pointer;
    text-decoration: solid underline var(--black) 2px;

}

/* //////////////////////// */

.try-container {
    width: 100%;
    min-height: 100vh;
    background-color: var(--white);
    align-items: center;
    padding-left: 120px;
    padding-right: 120px;
    display: flex;
    transition: background-color 0.5s;
  }
  
  .slider-value {
    display: flex;
    flex-direction: row;
  }
  
  .try-middle {
    width: 100%;
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }
  
  
  .try-sliders-container {
    width: 100%;

    color: var(--black);
    align-items: center;
    display: flex;
    flex-direction: column;
    row-gap: 40px;
  }
  
  .try-slider {
    width: 100%;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: column;
    display: flex;
  }
  
  .try-slider-upper-text {
    justify-content: space-between;
    align-items: flex-start;
    display: flex;
    margin-bottom: 5px;
    font-size: 24px;
  }
  
  .try-slider-slider{
      -webkit-appearance: none;
      width: 100%;
      height:1px;
      border-radius:30px;
      background: var(--black);
      outline:none;
    margin-bottom: 30px;
  }
  
  .try-slider-slider::-webkit-slider-thumb{
      -webkit-appearance: none;
      width:20px;
      height:20px;
    background-color: var(--black);
    cursor: grab;
    transition: 0.2s ease;
  }
  
  .try-slider-slider::-webkit-slider-thumb:hover{
    width: 25px;
    height: 25px;
  }
  
  #rangeAffectThisText{
    color: var(--black);
    background-color: transparent;
    border: 1px solid var(--black);
    width: 100%;
    padding: 20px;
    font-weight: 800;
    font-size: 64px;
    line-height: 1em;
    box-sizing: border-box;
    overflow: hidden;
    max-height: 380px;
    min-height: 300px;
  }
  
  #rangeAffectThisText:focus-visible{
    outline: none;
  }
  
@media screen and (max-width: 1300px) {
    .mark-title{
        flex-wrap: wrap;
        justify-content: start;
        column-gap: 60px;
        
    }

    .mark-title > div{
        line-height: 0.8em;
    }

    .mark-text-box{
        flex-direction: column;
        column-gap: 20px;
    }

    .mark-text-box > div{
        width: 100%;
    }
}
@media screen and (max-width: 1024px) {
    .download-link > a{
        font-size: 12vw;
        line-height: 1em;
    }


}
@media screen and (max-width: 852px) {
    .mark-title > div{
        font-size: 96px;
    }
    .mark-para{
        font-size: 18px;
    }

    .mark-border{
        font-size: 24px;
    }
}

@media screen and (max-width: 768px) {
    .mark-title > div{
        font-size: 96px;
    }
    .mark-para{
        font-size: 16px;
    }

    .mark-border{
        font-size: 20px;
        align-items: center;
    }

    .diacritic > div{
        font-size: 96px;
    }

    .cube{
        height: 10px;
        width: 10px;
    }

    .weight-box{
        width: 100%;
        flex-direction: column;
        align-items: center;

    }

    .weights{
        width: 320px;
        
    }
    #variable-test{
        font-size: 256px;
        width: 350px;
        text-align: left;
        
    }
    .neue{
        font-size: 120px;
    }
    .kaine{
        font-size: 120px;
    }
    .kaine-text{
        margin-top: 0px;
        margin-left: 10px;
        font-size: 16px;
    }
    .abc{
        font-size: 7.2vw;
    }

}

@media screen and (max-width: 704px) {
    .mark-title > div{
        font-size: 64px;
    }
    .mark-para{
        font-size: 14px;
    }
    .mark-border{
        font-size: 18px;
    }
    .mark-text-box{
        height: 300px;
    }
    .nav-box{
        width: 80vw;
    }

    .diacritic > div{
        font-size: 64px;
    }

    .download-link > div{
        margin-top: 0px;
    }
}

@media screen and (max-width: 575px) {

    .mark-box{
        padding: 0px 20px;
    }

    .try-container{
        padding: 0px 20px;
    }
}

@media screen and (max-width: 424px) {
    .uni-stuff {
        column-gap: 35px;
    }
    
    .svg object {
    width: 50px;
    height 50px;

  }

}

@media screen and (max-width: 374px) {
    .diacritic > div{
        font-size: 52px;
    }
}


    
