*{
    padding: 0;
    margin: 0;
}

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

.inter-font {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
}

.dosis-font {
    font-family: "Dosis", serif;
    font-optical-sizing: auto;
}
  

body{
    font-family: inter;
    background-color: #1C1C1C;
    width: 100%;
    height: 100%;
}

.zap{
    height: 100px;
    width: 100px;
}

.button:hover{
   background-color: #DCDCDC;
}

nav{
    position: fixed;
    /* width: 100vw; */
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background: transparent;
    backdrop-filter: blur(5px);
    border: 2px solid #696969;
    padding-left: 2rem;
    padding-right: 2rem;
    border-radius: 2.5rem;
    top: -16vh;
    left: 50%;
    transform: translate(-50%, -50%);
    transition-timing-function: ease;
    transition-duration: 0.2s;
}

.show{
    top: 10vh;
    transition-timing-function: ease;
    transition-duration: 0.2s;
}

.navbar a{
    text-decoration: none;
    color: #DCDCDC;
    font-weight: 500;
    z-index: 10;
}

#page1{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.page{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container{
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
}

.container h1{
    color: #DCDCDC;
    font-family: dosis;
    font-weight: bold;
    font-size: 5rem;

}

.container h2{
    color: #DCDCDC;
    font-family: dosis;
    font-weight: bold;
    font-size: 5rem;

}

.container h3{
    color: #696969;
    font-weight: 400;
    font-size: 1.9rem;
}

.container button{
    font-family: dosis;
    font-weight: bold;
    background-color: #757575;
    border: none;
    padding: 0.6em 1.5em;
    font-size: 1.4em;
    border-radius: 10px;
    margin-top: 50px;
    width: 100%;
}

.page2{
    flex-direction: column;
    color: #DCDCDC;
    font-family: dosis;
}

.page2 h2{
    /* font-family: dosis; */
    font-size: 2.3rem;
    
}

.page2 .tabs{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 6vh;
    font-size: 2rem;
    flex-direction: column;
}

/* .right{
    height: 10vh;
    width: 10vh;
    border-top: 2px solid #757575;
    border-right: 2px solid #757575;
}
.left{
    height: 10vh;
    width: 10vh;
    border-top: 2px solid #757575;
    border-left: 2px solid #757575;
} */

.line{
    height: 6.5vh;
    border: 1px solid #696969;
    opacity: 0.5;
    z-index: -1;
}

.hori-line{
    /* width: 70%; */
    border: 1px solid #69696947;
}

.footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* width: 100%; */
    color: #DCDCDC;
    height: 10vh;
    padding: 4rem;
}

.footer-left{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-right{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-right a{
    text-decoration: none;
    color: #DCDCDC;
}