body {
    margin: 0;
    background-image: url("images/NetherPortal.gif");
    background-repeat: repeat;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: center;
}

.wrap {
    margin: 0;
    background-image: url("images/bg.jpg");
    background-size: auto;
    background-repeat: repeat;
}

a {
    text-decoration: none;
    color: rgb(49, 145, 255);
}

a:hover {
    text-decoration: underline;
}

input[type=text],
input[type=password],
textarea,
button,
select {
    border-style: solid;
    background-color: rgb(43, 43, 43);
    border-color: black;
    padding: 10px;
    border-radius: 5px;
    color: white;
    width: 200px;
    font-size: medium;
}

input[type=text]:hover,
input[type=password]:hover,
textarea:hover,
button:hover,
select:hover {
    background-color: rgb(19, 19, 19);
}

button:hover,
select:hover {
    cursor: pointer;
}

textarea {
    width: 70%;
}

.msg {
    border-style: solid;
    border-radius: 5px;
    padding: 10px;
    width: 60%;
}

.msg-warning {
    background-color: rgb(253, 255, 131);
    border-color: rgb(255, 208, 0);
}

.msg-error {
    background-color: rgb(255, 131, 131);
    border-color: rgb(255, 0, 0);
}

.msg-true {
    background-color: rgb(166, 255, 131);
    border-color: rgb(0, 255, 0);
}

.msg-info {
    background-color: rgb(131, 185, 255);
    border-color: rgb(0, 81, 255);
}

header,
footer {
    padding-top: 15px;
    padding-bottom: 15px;
    position: sticky;
    background-color: rgb(43, 43, 43);
    margin: 0;
    left: 0;
    top: 0;
}

#bg-1 {
    width: 100%;
}

#title {
    width: 80%;
    position: absolute;
    top: 0;
    z-index: 2;
    left: 10%;
}

footer {
    margin-top: 50px;
    color: rgb(146, 146, 146);
    text-align: left;
    padding-left: 50px;
}

nav ul li {
    display: inline-block;
}

nav ul a {
    padding: 15px;
    margin-left: 0px;
    margin-right: 30px;
    color: white;
    font-weight: 900;
    text-decoration: none;
    display: inline-block;
    width: 110px;
}

nav ul a:hover li {
    text-decoration: underline;
}

footer nav ul a {
    display: inline-block;
}

footer nav {
    position: absolute;
    right: 30px;
    text-align: center;
}

#site-info {
    margin-top: 0px;
}

#top {
    width: 100%;
}

.article {
    width: 60%;
    height: auto;
    border-style: none;
    border-color: rgb(129, 129, 129);
    padding: 20px;
    margin-left: 20%;
    margin-right: 20%;
    margin-top: 70px;
    margin-bottom: 70px;
    background-color: white;
    text-align: left;
}

.article-content {
    padding-left: 30px;
}

.article-content i {
    color: rgb(92, 92, 92);
}

#article-register {
    padding: 30px;
}

.wrapper {
    width: 100%;
    margin: 0;
}

#mobile-info {
    display: none;
}

ol li {
    margin-bottom: 15px;
}

.news-title {
    font-weight: bold;
    font-size: 20px;
    color: black;
    margin-top: 10px;
    margin-bottom: 10px;
}

.news-info {
    font-style: italic;
    color: grey;
}

.news-content {
    margin-left: 15px;
}

.teams-color {
    background-color: rgb(19, 19, 19);
    padding: 5px;
    border-radius: 8px;
    text-align: center;
}

.register-alert {
    position: fixed;
    background-color: #000d;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    color: white;
    text-align: center;
    padding-top: 150px;
}

@media only screen and (max-width: 880px) {
    #mobile-info {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        background-image: url("images/NetherPortal.gif");
        background-repeat: repeat;
        width: 100%;
        height: 1000px;
        z-index: 3;
    }
    #mobile-info h1 {
        color: white;
        background-color: rgb(43, 43, 43);
        margin: 0;
        padding: 10px;
        margin-bottom: 20px;
        font-size: 20px;
    }
    #mobile-info img {
        width: 70%;
    }
    .article {
        width: 80%;
        margin-left: 5%;
        margin-right: 5%;
    }
    footer nav {
        position: relative;
    }
    header {
        position: relative;
    }
    #article-register .article {
        margin-left: 0px;
        margin-right: 0px;
        width: 100%;
    }
    #article-register {
        padding-left: 1px;
        padding-right: 1px;
    }
}