/* Algemene stijlen */
body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: white;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header */
header {
    background-color: #901A16;
    height: 40px;
    width: 100%;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#logo img {
    width: 50px; /* Pas de breedte aan naar wens */
    height: auto; /* Houdt de proporties van het plaatje intact */
}


/* Knoppen (Discord, TikTok, Twitch) */
#buttons {
    display: flex;
    gap: 15px;
}

#buttons .btn {
    background-color: #ff4d4d;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

#buttons .btn:hover {
    background-color: #ff2d2d;
}

/* Main content */
#content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 30px;
    width: 80%;
}

/* Afbeelding rechts van de tekst */
#content .image {
    width: 40%;
    margin-left: 20px;
}

#content img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

#content .text {
    width: 55%;
}

/* Serverinformatie in het midden van de pagina */
#server-info {
    text-align: center;
    margin-top: 50px;
    font-size: 18px;
}

/* Footer */
footer {
    background-color: #901A16;
    width: 100%;
    text-align: center;
    padding: 20px;
    margin-top: 30px;
}
