body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif; /* SpaceX ähnliche Schriftart */
    background-image: url("2024-07-22_14.25.gif");
    background-size: cover; /* Passt das Bild an den gesamten Hintergrund an */
    background-position: center; /* Zentriert das Bild */
    background-repeat: no-repeat; /* Verhindert Wiederholung des Bildes */
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

h1 {
    font-size: 4em;
    margin-bottom: 50px;
    font-weight: 500;
}

.server-status {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.status-online {
    color: #00ff00;
}

.status-offline {
    color: #ff0000;
}

.icon {
    font-size: 5em; /* Große Icons */
    margin: 20px auto;
}

.minecraft-icon {
    color: #ffffff; /* Minecraft-Grün */
}

.discord-icon {
    color: #7289DA; /* Discord-Blau */
}

.server-address {
    font-size: 1.2em;
    margin-top: 10px;
    font-weight: 500;
}

.discord-link, .minecraft-link {
    display: flex;
    justify-content: center;
    align-items: center; /* Zentriert das Icon vertikal */
    margin: 20px auto;
    width: 100px;
    height: 100px;
    background-color: transparent;
    border-radius: 50%;
    font-size: 3em;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    margin-top: 60px;
}

.discord-link:hover {
    background-color: #7289DA;
    color: white;
}

.minecraft-link:hover {
    background-color: #34D399;
    color: white;
}
.material-symbols-outlined {
font-size: 60px !important;
}
