/* CSS Document */
/* Universal Settings */
* {
    margin: 0;
    padding: 0;
    color: #F3F3F2;
    text-decoration: none;
}

ul {
    list-style: none;
}

body {
    height: 100%;
    background-image: url("https://api.jiaokan.xyz/randpic");
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

body:before {
    content: "";
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.50);
}

/* Navbar Settings */
.navbar {
    width: 100%;
    height: 90px;
    position: fixed;
    top: 0;
    float: left;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.75);
}

.homepageButton {
    width: 300px; /*Change here according to the title and subtitle*/
    height: 100%;
    display: inline-block;
    float: left;
    line-height: 90px;
    text-align: center;
    font-size: 25px;
    font-weight: 100;
}

.navLink {
    width: 150px;
    height: 100%;
    display: inline-block;
    float: right;
    line-height: 90px;
    text-align: center;
    font-size: 20px;
}

.homepageButton:hover, .navLink:hover {
    background-color: rgba(168, 124, 160, 0.50);
}

/* Main Settings */
.message {
    width: 100%;
    margin: 90px auto auto;
    display: block;
    padding-top: 50px;
    font-size: 25px;
    text-align: center;
}