.black-border {
    display: inline-block;
    border: 5px solid black;
    background-color: black;
    color: white;
}

.witherstorm-image {
    width: 1280px;
    height: 720px;
}

.header-logo {
    margin-left: 0;
    display: block;
    height: 64px;
    width: 64px;
}

.bold {
    font-weight: bolder;
}

.header {
    border: 10px solid white;
    background-color: white;
    text-align: left;
    display: flex;
    gap: 1em;
    padding: 10px;
    align-items: center;
}

.header-link {
    color: gray;
    text-decoration: none;
    font-size: large;
    display: inline-block;
    margin-top: -10px;
}

.server-features {
    font-size: 2em;
}

.join-button {
    display: inline-block;
    padding: 1em 2em;
    font-size: 2em;
    color: white;
    background-color: greenyellow;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.join-button:hover {
    background-color: rgb(140, 208, 39);
    transform: scale(1.05);
}
