/* styles.css */
body {

    /* Hintergrundbild-Einstellungen */
    background-image: url('px/hintergrund.jpg'); /* Pfad zur Bilddatei */
    background-size: cover;       /* Skaliert das Bild, um den gesamten Bereich abzudecken */
    background-attachment: fixed; /* Bild bleibt fest, scrollt nicht mit */
    background-repeat: no-repeat; /* Kein Kacheln */
    background-position: center;  /* Zentriert das Bild */
}

.share-container {
    position: relative;
    display: inline-block;
    margin: 20px;
}

.share-btn {
    width: 50px; /* Größe des Share-Buttons */
    cursor: pointer;
}

.share-options {
    display: none; /* Standardmäßig ausgeblendet */
    position: absolute;
    top: 60px;
    left: 0;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: 70px;
    text-align: center;
}

.share-option {
    display: block;
    padding: 5px 0; /* Padding verkleinern */
    color: #007bff;
    text-decoration: none;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
}

.share-option img {
    width: 50px; /* Größe der Social Media Icons */
    height: 50px;
}

.share-option:hover {
    background-color: #ffffff;
}

.share-option:last-child {
    border-bottom: none;
}
