body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    background-color: #171a21;
    color: white;
}

header h1 span {
    display: inline-block; /* Ensures "Rust" & "ralasia" behave properly */
}

header p {
    display: block; /* Forces slogan onto new line */
    clear: both; /* Ensures it doesn't align inline */
    margin-top: 10px; /* Adds separation */
}

/* Buttons */
.login-btn {
    padding: 15px 25px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    margin: 10px;
}

.steam {
    background-color: #171a21;
}

.discord {
    background-color: #7289da;
}

.login-btn:hover {
    opacity: 0.8;
}