html, body {
    background: #000000;
    padding: 0;
    margin: 0;
}

select {
    padding: 2px;
    font-size: 14px;
    border: 2px solid #771100;
    background-color: #882211;
    color: #FFFFFF;
    transition: border-color 0.3s ease-in-out;
  }
select:hover {
    border-color: #771100;
  }
select:focus {
    border-color: #771100;
  }

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 110px;
    background-color: #111111;
    position: absolute;
    height: 75%;
    overflow: auto;
}

li a {
    display: block;
    color: #d5b590;
    padding: 5px 10px;
    text-decoration: none;
    font-size: 14px;
}

li a:hover {
    color: #d5b590;
    background: url(images/rectB.png);
    background-size: 100% 100%;
}
.gameBgMove { 
    position: relative;
    background: url(images/syBG.jpg);
    height: 100vh;
    background-size: 150vmax;
    background-position: 0 0;
    animation: animate 50s linear infinite;
}
.bgMove { 
    position: relative;
    background: url(images/backGround.jpg);
    height: 100vh;
    background-size: 150vmax;
    background-position: 0 0;
    animation: animate 50s linear infinite;
}
@keyframes animate {
    from {
        background-position: 0 0;
    }
    to {
        background-position: -150vmax 0;
    }
}

.bottomLink {
    margin-top: 0px;
    text-align: center;
    color: #dddddd;
    font-size: 12px;
}
.discord {
    text-align: center;
    color: #eeeeee;
    font-size: 14px;
    font-family: "Times New Roman", Times, serif;
    font-weight:bold;
}
.imgRt {
    position: absolute;
    top: 15%;
    left: 15%;
    -webkit-animation: rotation 5s linear infinite;
    animation: rotation 5s linear infinite;
}
@keyframes rotation {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}
.notice {
    position:relative; 
    margin: auto;
    top: 17vh;
    width: 70vw;
    border: 10px solid;
    border-image-source: url(images/notice.png);
    border-image-repeat: repeat;
    border-image-slice: 30 100 fill;
    border-image-width: 15px 50px;
}
.guide {
    position:relative; 
    margin: auto;
    border: 10px solid;
    border-image-source: url(images/notice.png);
    border-image-repeat: repeat;
    border-image-slice: 30 100 fill;
    border-image-width: 15px 50px;
    height: 75vh;
    overflow: auto;
}
.import {
    color: #222222;
    text-align: left;
    font-size: 16px;
}
.title {
    color: #000000;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}
.note {
    color: #555555;
    text-align: left;
    font-size: 12px;
}
.outlinetext {    
    color: #FFFFFF;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 2px 2px 4px #d5b590;
}
.rounded-div {
  background-color: #303030;
  border-radius: 10px;
}
.linkAct {
    color: #FFFFFF;
    font-size: 14px;
    text-decoration: none;
}
.linkGo {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
}

.button {
    background-color: #16784d;
    border: none;
    border-radius: 4px;
    color: #ffffff;
    padding: 5px 15px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    margin: auto;
    cursor: pointer;
}

.lbutton {
    background-color: #16784d;
    border: none;
    border-radius: 3px;
    color: #ffffff;
    padding: 3px 10px;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    margin: auto;
    cursor: pointer;
}

.tip {
  color: #0bb056;
  font-size: 14px;
  font-weight: bold;
}

input[type="text"]{
    width:200px;
    height:25px;  
    border:1px solid #777777;
    border-radius: 4px;
    background:#333333;
    margin: 2px 2px;
    color: #EEEEEE;
}