@font-face {font-family: "SDK_SC_Web 85W"; src: url("zh-cn.ttf") format("truetype");}

html {
    background: url("./background.jpg") no-repeat center fixed #000000;
    background-size: cover;
}

body {
    text-align: center;
    margin: 0 auto;
    padding: 0;
    font-family: "SDK_SC_Web 85W", sans-serif;
    color: white;
}

nav {
    background-color: #1b102e;
    margin: 0;
    overflow: hidden
}

nav ul {
    margin: 0;
    padding: 0;
}

nav ul li {
    float: left;
    position: relative;
    width: 33%;
    display: inline-block;
    list-style-type: none;
}

nav ul li p {
    vertical-align: middle;
    display: inline-block;
}

img {
    vertical-align: middle;
    display: inline;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    margin-top: -2px;
}

input[type=text], select {
    width: 100%;
    padding: 5px 10px;
    margin: 3px 0;
    display: inline-block;
    border: 1px solid #000;
    border-radius: 5px;
    box-sizing: border-box;
}

.btn {
    border-radius: 8px;
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
}

.btn:hover {
    cursor: pointer;
}

.blurple {
    background-color: #5865F2;
    color: white;
}

.blurple:hover {
    background-color: #434db4;
    color: #b7b7b7;
}

.green {
    background-color: #58f260;
    color: white;
}

.green:hover {
    background-color: #4ac750;
    color: #b7b7b7;
}

#content {
    display: flex;
    width: 100%;
}

#content > div {
    flex: 1;
}

#credits {
    position: relative;
    bottom: 1%;
    right: 1%;
}

a {
    color: #9e4cb6;
}

#logout {
    color: white;
    text-decoration: none;
    border: 2px solid #FFFFFF;
    border-radius: 8px;
    padding: 5px;
}

.invis {
    display: none;
}