@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@400;600&display=swap');

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

body {
    background-color: #111;
    font-family: 'Titillium Web', sans-serif;
    color: #fff;
    transition-duration: 0.5s;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin:0;
    min-height: 100vh;
}

a {
    text-decoration: none;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
}

::-webkit-scrollbar-thumb {
    background: rgb(172, 13, 172);
    border-radius: 10px;
    box-shadow: inset 0 0 5px black;
}


/* NAVBAR */
.navbar{
    height: 50px;
    width: 100%;
    background-color: #fff;
    display: flex;
    position: fixed;
}

.navbar .my-logo img{
    background-color: #111;
    height: 50px;
    width: 250px;
    transition-duration: 0.2s;
}

.navbar .my-logo img:hover{
    background-color: rgb(80, 45, 136);
}

.navbar-menu{
    width: 100%;
    height: 50px;
    background-color: #111;
}

.navbar-menu-item{
    background-color: #111;
    height: 50px;
    width: 100px;
    justify-items: center;
    text-align: center;
    padding-top: 12px;
    font-size: 18px;
    float: right;
    cursor: pointer;
    transition-duration: 0.2s;
    padding-left: 15px;
    padding-right: 15px;
    color: #fff;
}

.navbar-menu-item:hover{
    background-color: cornflowerblue;
}

/* SIDE PAGE */
.side-page{
    min-height: 100vh;
    width: 350px;
    background-color: #fff;
    float: right;
}


/* Container */
.container{
    min-height: 100vh;
    width: 100%;
    background-color: #111;
}

/* Header */
.header{
    justify-content: center;
    align-items: center;
    padding-top: 80px;
    display: block;
    text-align: center;
    cursor: default;
    background-image: url("img/head-bg.png");
    background-repeat: no-repeat;
    background-position-x: -500px;
}

.header img{
    height: 150px;
    width: auto;
}

.header h1{
    color: #fff;
    font-size: 60px;
    margin-bottom: 15px;
    /* text-shadow: 0px 0px 10px #fff,
    0px 0px 25px rgb(153, 0, 255),
    0px 0px 25px rgb(153, 0, 255); */
    /* text-shadow: 5px 5px 10px #000; */
    -webkit-text-stroke: 1px black;
    text-shadow:
        3px 3px 0 #000,
      1px 1px 0 #000,  
       1px 1px 0 #000,
       1px 1px 0 #000,
        1px 1px 0 #000;
}

/* Body Content */
.root{
    background-color: #222;
    min-height: auto;
    width: 90%;
    padding: 10px 50px;
    display: block;
    margin: 0 auto;
}

.page-content{
    background-color: rgb(10, 10, 10);
    height: 50px;
    width: 100%;
    border: 2px solid #fff;
    padding: 4px 0;
    cursor: pointer;
    transition-duration: 0.2s;
    margin: 16px auto;
}

.page-content p{
    text-align: center;
    font-size: 24px;
    color: #fff;
}

.page-content:hover{
    background-color: rgb(105, 61, 209);
}

.disable-content{
    cursor:default;
    background-color: rgba(10, 10, 10, 0.6);
    border: 2px solid rgb(172, 172, 172);
    color: rgb(172, 172, 172);;
}

.disable-content:hover{
    background-color: rgba(10, 10, 10, 0.6);;
}


/* Footer */
#footer{
    position: relative;
    height: 30px;
    width: 100%;
    background-color: #111;
    bottom: 0;
    margin-top: 20px;
    color: #4c00ff;
}

#footer p {
    text-align: center;
    font-size: 18px;
    font-family: 'Courier New', Courier, monospace;

}

.head-img{
    display: flex;
    justify-content: center;
    align-items: center;
}

.head-img img{
    max-width: 90%;
    max-height: 90%;
    margin: 20px;
    transition-delay: 0.5s;
}

.about-desc p{
    font-size: 18px;
    text-align: justify;
}

.feature-list{
    font-size: 18px;
    text-align: justify;
    margin: 5px 20px;
}

.feature-name{
    /* padding: 2px 5px; */
    border-radius: 6px;
    /* background-color: #444; */
    color: #00FFFF;
}

.terms-box{
    font-size: 18px;
}

.tekstekanan{
    color: #F00;
    font-size: 20px;
}

.contact-info-desc{
    color: rgb(0, 132, 255);
}

.my-discord{
    color: #7289da;
    font-weight: bold;
    font-size: 24px;
    margin-left: 20px;
}

.chind-wa{
    color: #0fb826;
    font-weight: bold;
    font-size: 24px;
    margin-left: 25px;
}

.mycontact-info{
    display: flex;
    align-items: center;
    margin-bottom: 2px;
}

.how-to-install{
    font-size: 18px;
}

.jutsu-example{
    text-align: center;
}

.download-desc{
    margin-left: 30px;
    font-size: 20px;
}

.download-link{
    font-size: 18px;
    margin-left: 5px;
    color:#ae00ff;
    cursor: pointer;
}

.download-link:hover{
    color: #0ff;
}

.credit-info{
    margin-top: 60px;
    height: auto;
}

.addspacing{
    height: 500px;
}

.line-page::after {
    content: '';
    display: block;
    width: 100%;
    border-bottom: 1px solid #ccc; /* Atur warna dan ukuran garis sesuai kebutuhan */
    margin: 10px 0; /* Atur jarak atas dan bawah garis sesuai kebutuhan */
}

.contributor-user{
    margin-top: 10px;
    margin-left: 50px;
}

.userc-logo{
    border-radius: 50%;
    width: 32px;
    vertical-align: middle;
}

.userg-logo{
    width: 30px;
    vertical-align: middle;
}

.userh-logo{
    border-radius: 50%;
    width: 28px;
    vertical-align: middle;
}

.userw-logo{
    border-radius: 50%;
    margin-right: 6px;
    width: 24px;
    vertical-align: middle;
}

.contributor-user p{
    margin-left: 45px;
}

.contributor-name{
    color: #00FFFF;
    font-size: 24px;
    vertical-align: middle;
    margin-left: 10px;
}


/* GUIDE */
.jutsu-video{
    height: 500px;
    width: 90%;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.status-video{
    color: #666;
}

.table-shortcut{
    width: 100%;
    background-color: #000;
    color: #FFF;
    text-align: center;
}

.table-shortcut table{
    width: 100%;
}

.table-shortcut table th{
    background-color: #2b2372;
    color: #0ff;
    font-size: 20px;
    padding: 5px;
}

.table-shortcut table td{
    background-color: #171241;
    padding: 5px;
}

.manual-setting h3{
    font-size: 24px;
}

@font-face {
    font-family: 'SFMono';
    src: url('SFMono-Regular.otf');
}

.code-preview{
    font-family: 'SFMono';
    font-weight: normal;
    background-color: #0d1117;
    padding: 10px;
    margin-left: 30px;
    font-size: 12px;
    border-radius: 5px;
    margin-bottom: 5px;
}

.desc-setting{
    font-weight: normal;
    margin-left: 32px;
}

#download-section{
    font-size: 22px;
}

.wa-hov:hover{
    color: #0ff;
}

.lyric-tutor .tutor-section h3{
    font-size: 24px;
}

.lyric-tutor .tutor-section span{
    font-weight: normal;
    font-size: 18px;
    text-align: justify;
}

.tab {
    display: inline-block;
    margin-left: 40px;
}

.credits{
    width: 100%;
    height: auto;
    text-align: center;
}
