body {
    background-image: url('background.png');
    background-repeat: repeat;
    background-size: auto;
    background-position: top left;
}

.server-header {
    display: flex;
    align-items: center;
    padding: 30px;
    margin: 40px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    max-width: 600px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.server-logo {
    width: 100px;
    height: auto;
    margin-right: 20px;
}

.server-info h1 {
    color: whitesmoke;
    font-size: 28px;
    margin: 0;
}

.server-info p {
    font-size: 18px;
    margin: 5px 0;
    color: whitesmoke;
}

.loading-container {
    position: absolute;
    top: 40px;
    right: 40px;
    background: rgba(148, 148, 148, 0.6);
    padding: 30px;
    border-radius: 15px;
    max-width: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading-gif {
    width: 100px;
    height: auto;
}