body{
    background-color: rgb(50,50,50);
    user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    overflow: hidden;
}
*{
    font-weight: 200;
    margin: 0;
    padding: 0;
}
#nav1{
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 70px;
    background-color: rgb(20,20,20);
    display: flex;
    justify-content: center;
    align-items: center;
}
#nav1 h3{
    color: white;
    font-size: 25px;
    height: 100%;
    width: 100px;
    text-align: center;
    line-height: 70px;
    transition: background-color 0.5s ease;
}
#nav1 h3:hover{
    background-color: rgb(70,70,70);
}
#nav1 h3:active{
    background-color: rgb(100,100,100);
}
#nav1-logo{
    position: absolute;
    top: 46%;
    left: 60px;
    transform: translate(-50%,-50%);
    height: 120%;
    pointer-events: none;
}
#text1{
    position: absolute;
    top: 50%;
    left: 220px;
    transform: translate(-50%,-50%);
    color: white;
}
#about{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(0.8);
    width: 600px;
    height: 340px;
    background-color: rgb(90,90,90);
    color: white;
    visibility: hidden;
    opacity: 0;
    transition: transform 0.5s ease,
    opacity 0.5s ease;
    border-radius: 25px;
    z-index: 1;
}
#about h1{
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 50px;
}
#about h3{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 20px;
    width: 90%;
}
#about a{
    color: rgb(42, 188, 255);
    transition: color 0.5s ease;
    text-decoration: none;
}
#about a:hover{
    color: rgb(127, 214, 255);
}
#about a:active{
    color: rgb(176, 230, 255);
}
#about-ok{
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 130px;
    height: 40px;
    border-radius: 15px;
    border: none;
    background-color: rgb(140, 242, 255);
    font-size: 18px;
    color: black;
    transition: background-color 0.5s ease,
    color 0.5s ease;
}
#about-ok:hover{
    background-color: rgb(0, 225, 255);
    color: white;
}
#about-ok:active{
    background-color: rgb(0, 198, 224);
    color: white;
}
#text2{
    position: absolute;
    top: 150px;
    left: 50%;
    transform: translate(-50%,-50%);
    color: white;
    font-size: 50px;
}
#text2 span{
    background: linear-gradient(90deg,rgb(145, 220, 255),rgb(36, 36, 255));
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    color: transparent;
}
#text3{
    position: absolute;
    top: 220px;
    left: 50%;
    transform: translate(-50%,-50%);
    color: white;
    font-size: 25px;
}
#text4{
    position: absolute;
    top: 380px;
    left: 50%;
    transform: translate(-50%,-50%);
    color: white;
    font-size: 25px;
}
#btn1{
    position: absolute;
    top: 300px;
    left: 50%;
    transform: translate(-50%,-50%) scale(0.85);
    width: 190px;
    height: 50px;
    background-color: rgb(0, 67, 252);
    color: white;
    border: none;
    transition: background-color 0.5s ease,
    transform 0.5s ease,
    color 0.5s ease;
    border-radius: 20px;
    font-size: 20px;
}
#btn1:hover{
    transform: translate(-50%,-50%) scale(1);
    background-color: rgb(101, 219, 255);
    color: black;
}
#btn1:active{
    transform: translate(-50%,-50%) scale(0.95);
    background-color: rgb(0, 204, 255);
    color: black;
}
#copyright{
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 20px;
    color: white;
}