html {
    background-color: #222222;
    color: white;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5em 1.5em;
    background-color: #4f4f4f;
    border-radius: 15px;
    width: 75%;
    margin: 1% auto;
    padding-top 11px;
}

.header-links {
    display: flex;
    gap: 1.5em;
    background-color: #4f4f4f;
}

.header-link {
    text-decoration: none;
    font-weight: 500;
    color: white;
    background-color: #4f4f4f;
}

.header-link:hover {
    color: #65BF22
}

.header-logo {
    height: 50px;
    background-color: #4f4f4f;
}

.header-logo img {
    width: 50px;
    height: 50px;
    position: relative;
    top: 0px;
    left: 0px;
}

.header-logo img:hover {
    width: 60px;
    height: 60px;
    position: relative;
    top: -5px;
    left: -5px;
}

img {
    transition: width 0.5s, height 0.5s, top 0.5s, left 0.5s;
}

.content-window {
    width: 70%;
    min-height: 400px;
    margin: 1% auto;
    background-color: #4f4f4f;
    text-align: center;
    padding: 0.5em;
    border-radius: 5px;
    padding-bottom: 2.5em;
}
.content-window-title {
    border-bottom: 3px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    margin: 0 auto;
}

.content-window-section {
    border-bottom: 1px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30%;
    margin: 0 auto;
    padding-bottom: 0;
}

.content-window ul {
    width: 25%;
    margin: 10px auto;
    text-align: left;
}

.content-window li {
    margin: 10px 0;
}

.content-window a {
    text-decoration: none;
    color: white;
}

.content-window a:hover {
    color: #65BF22;
}

.server-ip {
    font-size: large;
    padding: 0.2em 0.5em;
    background-color: #738f5d;
    border-radius: 5px;
}

footer {
    width: 75%;
    min-height: 200px;
    margin: 1% auto;
    border-top: 2px solid #4a4a4a;
    font-size: small;
    color: #4a4a4a
}
