body{
    background-color: rgb(30,30,30);
    background-attachment: fixed;
    user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    transition: background-color 0.5s ease;
    overflow: hidden;
}
@font-face {
    font-family: "JetBrains Mono";
    src: url("../content/Fonts/JetBrainsMonoFonts/JetBrainsMono-Regular.ttf");
    font-weight: normal;
}
@font-face {
    font-family: "JetBrains Mono";
    src: url("../content/Fonts/JetBrainsMonoFonts/JetBrainsMono-Bold.ttf");
    font-weight: bold;
}
@font-face {
    font-family: "JetBrains Mono";
    src: url("../content/Fonts/JetBrainsMonoFonts/JetBrainsMono-Italic.ttf");
    font-style: italic;
    font-weight: normal;
}
@font-face {
    font-family: "JetBrains Mono";
    src: url("../content/Fonts/JetBrainsMonoFonts/JetBrainsMono-BoldItalic.ttf");
    font-style: italic;
    font-weight: bold;
}
*{
    margin: 0;
    padding: 0;
    font-family: "Microsoft YaHei",Consolas,"JetBrains Mono",system-ui,sans-serif;
    font-weight: 200;
}
#text1{
    position: absolute;
    left: 50%;
    transform: translate(-50%,-50%);
    color: white;
    font-size: 40px;
    animation: move1 2.5s forwards;
    transition: color 0.5s ease;
}
#text2{
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: white;
    font-size: 20px;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s ease,
    color 0.5s ease,
    top 0.5s ease;
}
#text3{
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: white;
    font-size: 20px;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s ease,
    color 0.5s ease,
    top 0.5s ease;
}
@keyframes move1{
    0%{
        top: 30%;
    }
    25%{
        top: 50%;
    }
    25%,60%{
        top: 50%;
    }
    100%{
        top: 30%;
    }
}
#div1{
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: rgb(50,50,50);
    width: 800px;
    height: 400px;
    border-radius: 25px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease,
    background-color 0.5s ease;
}
#dark-default{
    position: absolute;
    top: 200px;
    left: 200px;
    transform: translate(-50%,-50%);
    background-color: rgb(30,30,30);
    width: 300px;
    height: 200px;
    border-radius: 25px;
    overflow: hidden;
    border: 2px solid rgb(50,50,50);
    transition: border 0.5s ease,
    top 0.5s ease,
    opacity 0.5s ease;
}
#dark-default:hover{
    border-color: rgb(120,0,255);
}
#dark-default:active{
    border-color: rgb(183,0,255);
}
#dark-default.borderToggle{
    border-color: rgb(220,220,220);
}
#dark-default.borderToggle:hover{
    border-color: rgb(120,0,255);
}
#dark-default.borderToggle:active{
    border-color: rgb(183,0,255);
}
#light{
    position: absolute;
    top: 200px;
    left: 600px;
    transform: translate(-50%,-50%);
    background-color: rgb(230, 230, 230);
    width: 300px;
    height: 200px;
    border-radius: 25px;
    overflow: hidden;
    border: 2px solid rgb(50,50,50);
    transition: border 0.5s ease,
    top 0.5s ease,
    opacity 0.5s ease;
}
#light:hover{
    border-color: rgb(120,0,255);
}
#light:active{
    border-color: rgb(183, 0, 255);
}
#light.borderToggle{
    border-color: rgb(220,220,220)
}
#light.borderToggle:hover{
    border-color: rgb(120,0,255);
}
#light.borderToggle:active{
    border-color: rgb(183,0,255);
}
#line1{
    position: absolute;
    top: 10%;
    left: 42%;
    transform: translate(-50%,-50%);
    height: 3px;
    width: 250px;
    background-color: rgb(195, 0, 255);
    border-radius: 10px;
}
#line2{
    position: absolute;
    top: 15%;
    left: 33.5%;
    transform: translate(-50%,-50%);
    height: 3px;
    width: 200px;
    background-color: white;
    border-radius: 10px;
}
#line3{
    position: absolute;
    top: 20%;
    left: 33.5%;
    transform: translate(-50%,-50%);
    height: 3px;
    width: 150px;
    background-color: rgb(252, 186, 4);
    border-radius: 10px;
}
#line4{
    position: absolute;
    top: 10%;
    left: 42%;
    transform: translate(-50%,-50%);
    height: 3px;
    width: 250px;
    background-color: rgb(195, 0, 255);
    border-radius: 10px;
}
#line5{
    position: absolute;
    top: 15%;
    left: 33.5%;
    transform: translate(-50%,-50%);
    height: 3px;
    width: 200px;
    background-color: rgb(0, 0, 0);
    border-radius: 10px;
}
#line6{
    position: absolute;
    top: 20%;
    left: 33.5%;
    transform: translate(-50%,-50%);
    height: 3px;
    width: 150px;
    background-color: rgb(252, 186, 4);
    border-radius: 10px;
}
#preview-leftbar{
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translate(-50%,-50%);
    width: 30%;
    height: 100%;
    background-color: rgb(80,80,80);
}
#preview-linesnumbers{
    position: absolute;
    top: 50%;
    left: 32%;
    transform: translate(-50%,-50%);
    width: 5%;
    height: 100%;
    background-color: rgb(60,60,60)
}
#preview-leftbar-tools{
    position: absolute;
    top: 50%;
    left: 3%;
    transform: translate(-50%,-50%);
    background-color: rgb(70,70,70);
    width: 6%;
    height: 100%;
}
#text-dark-default{
    position: fixed;
    top: 85%;
    left: 25%;
    transform: translate(-50%,-50%);
    color: white;
    transition: color 0.5s ease,
    opacity 0.5s ease,
    top 0.5s ease;
}
#preview-light-leftbar{
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translate(-50%,-50%);
    width: 30%;
    height: 100%;
    background-color: rgb(200, 200, 200);
}
#preview-light-linesnumbers{
    position: absolute;
    top: 50%;
    left: 32%;
    transform: translate(-50%,-50%);
    width: 5%;
    height: 100%;
    background-color: rgb(210, 210, 210);
}
#preview-light-leftbar-tools{
    position: absolute;
    top: 50%;
    left: 3%;
    transform: translate(-50%,-50%);
    background-color: rgb(190, 190, 190);
    width: 6%;
    height: 100%;
}
#text-light{
    position: absolute;
    top: 85%;
    left: 75%;
    transform: translate(-50%,-50%);
    color: white;
    transition: color 0.5s ease,
    opacity 0.5s ease,
    top 0.5s ease;
}
#btn1{
    position: absolute;
    top: calc(50% + 390px);
    left: calc(50% + 150px);
    transform: translate(-50%,-50%);
    width: 120px;
    height: 40px;
    background-color: rgb(150,0,255);
    border-radius: 10px;
    border: none;
    color: white;
    font-size: 18px;
    visibility: hidden;
    opacity: 0;
    transition: background-color 0.5s ease,
    opacity 0.5s ease,
    width 0.5s ease,
    height 0.5s ease,
    font-size 0.5s ease,
    top 0.5s ease;
}
#btn1:hover{
    background-color: rgb(122, 0, 221);
}
#btn1:active{
    background-color: rgb(102, 0, 197);
    width: 110px;
    height: 35px;
    font-size: 15px;
}
#btn2{
    position: absolute;
    top: calc(50% + 400px);
    left: calc(50% + 150px);
    transform: translate(-50%,-50%);
    width: 120px;
    height: 40px;
    background-color: rgb(150,0,255);
    border-radius: 10px;
    border: none;
    color: white;
    font-size: 18px;
    visibility: hidden;
    opacity: 0;
    transition: background-color 0.5s ease,
    opacity 0.5s ease,
    width 0.5s ease,
    height 0.5s ease,
    font-size 0.5s ease,
    top 0.5s ease,
    left 1.5s ease;
}
#btn2:hover{
    background-color: rgb(122, 0, 221);
}
#btn2:active{
    background-color: rgb(102, 0, 197);
    width: 110px;
    height: 35px;
    font-size: 15px;
}
#backbtn1{
    position: absolute;
    top: calc(50% + 400px);
    left: calc(50% - 150px);
    transform: translate(-50%,-50%);
    width: 120px;
    height: 40px;
    border-radius: 10px;
    background-color: rgb(200, 153, 255);
    border: none;
    font-size: 18px;
    color: white;
    visibility: hidden;
    opacity: 0;
    transition: background-color 0.5s ease,
    opacity 0.5s ease,
    width 0.5s ease,
    height 0.5s ease,
    font-size 0.5s ease,
    top 0.5s ease,
    left 1.5s ease;
}
#backbtn1:hover{
    background-color: rgb(191, 112, 255);
}
#backbtn1:active{
    background-color: rgb(171, 81, 255);
    width: 110px;
    height: 35px;
    font-size: 15px;
}
#tgbtn1{
    position: absolute;
    top: calc(50% + 390px);
    left: calc(50% - 150px);
    transform: translate(-50%,-50%);
    width: 120px;
    height: 40px;
    border-radius: 10px;
    background-color: rgb(200, 153, 255);
    border: none;
    font-size: 18px;
    color: white;
    opacity: 0;
    visibility: hidden;
    transition: background-color 0.5s ease,
    opacity 0.5s ease,
    width 0.5s ease,
    height 0.5s ease,
    font-size 0.5s ease,
    top 0.5s ease,
    left 1.5s ease;
}
#tgbtn1:hover{
    background-color: rgb(191, 112, 255);
}
#tgbtn1:active{
    background-color: rgb(171, 81, 255);
    width: 110px;
    height: 35px;
    font-size: 15px;
}
#unknown-theme{
    position: absolute;
    top: 92%;
    left: 80%;
    transform: translate(-50%,-50%);
    width: 350px;
    height: 180px;
    visibility: hidden;
    opacity: 0;
    background-color: rgb(90,90,90);
    border-radius: 25px;
    transition: top 0.5s ease,
    opacity 0.5s ease;
}
#unknown-theme-text{
    position: absolute;
    top: 30%;
    left: 60%;
    transform: translate(-50%,-50%);
    color: white;
    font-size: 20px;
    white-space: nowrap;
}
#error-icon{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}
.popup-ok-btn{
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: rgb(220, 0, 255);
    width: 70px;
    height: 30px;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 17px;
    transition: background-color 0.5s ease;
}
.popup-ok-btn:hover{
    background-color: rgb(190,0,200)
}
.popup-ok-btn:active{
    background-color: rgb(150,0,150)
}
.popup-error-div{
    position: absolute;
    top: 30%;
    left: 15%;
    transform: translate(-50%,-50%);
    width: 60px;
    height: 60px;
    background-color: rgb(155, 68, 255);
    border-radius: 50%;
}
.code-language-select-top{
    position: absolute;
    transform: translate(-50%,-50%);
    background-color: rgb(120,120,120);
    border-radius: 25px;
    opacity: 0;
    visibility: hidden;
    width: 40%;
    height: 40%;
    transition: all 0.5s ease;
}
.code-language-select-down{
    position: absolute;
    transform: translate(-50%,-50%);
    background-color: rgb(120,120,120);
    border-radius: 25px;
    opacity: 0;
    visibility: hidden;
    width: 40%;
    height: 40%;
    transition: all 0.5s ease;
}
.code-language-select-down.langselected,
.code-language-select-top.langselected{
    box-shadow: 0 0 20px rgb(227, 187, 255) !important;
    background-color: rgb(180, 152, 255) !important;
    pointer-events: auto;
}
.langselect-light-theme .code-language-select-top.langselected,
.langselect-light-theme .code-language-select-down.langselected {
    background-color: rgb(220, 200, 255) !important;
    box-shadow: 0 0 20px rgb(200, 153, 255) !important;
}
.langselect-light-theme .code-language-title,
.langselect-light-theme .code-language-intro{
    color: black;
}
.code-language-select-down,
.code-language-select-top{
    cursor: pointer;
}
.code-language-select-down:not(.langselected):hover,
.code-language-select-top:not(.langselected):hover{
    background-color: rgb(150,150,150) !important;
}
.langselect-light-theme .code-language-select-down:not(.langselected):hover,
.langselect-light-theme .code-language-select-top:not(.langselected):hover{
    background-color: rgb(190, 190, 190) !important;
}
#code-language-select-c-cpp{
    top: 23%;
    left: 25%;
}
#code-language-select-web{
    top: 23%;
    left: 75%;
}
#code-language-select-electron{
    top: 77%;
    left: 25%;
}
#code-language-select-others{
    top: 77%;
    left: 75%;
}
.code-language-title{
    position: absolute;
    top: 10%;
    left: 10%;
    font-size: 30px;
    color: white;
}
.code-language-intro{
    position: absolute;
    top: 40%;
    left: 10%;
    font-size: 20px;
    color: white;
}