  /*index styling:
  
  /* Grundlegende Stile für den Body */
  body {
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
}

/* Stile für den Inhalt */
.content {
    padding-bottom: 200px;
    text-align: center;
}

.content img {
    max-width: 100%;
    max-height: 150px;
    /* Beschränken Sie die maximale Höhe des Logos */
    height: auto;
    /* Höhe wird automatisch angepasst */
}

/* Stil für den abgerundeten Button */
.rounded-button {
    background-color: #D3E5FF;
    font-family: 'Montserrat', sans-serif;
    color: black;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
}

.rounded-button:hover {
    background-color: #C395D8;
    /* Dunklere Farbe bei Hover */
}

/* Stil für die Fusszeile */
.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #fff;
    color: black;
    padding: 20px;
    box-sizing: border-box;
    border-top: 1px solid #000;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo img {
    max-height: 50px;
}

/* Hintergrundbildstil */
.background-image {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background-image: url('../media/img/gebaude_montpellier_dunkel.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


 /*step3 styling:
 /* Stile für den Body */
 body {
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
}

/* Stile für den Hauptinhalt */
.content {
    padding-bottom: 200px;
    text-align: center;
}

.content img {
    max-width: 100%;
    max-height: 150px;
    /* Beschränkung der maximalen Höhe des Logos */
    height: auto;
    /* Höhe wird automatisch angepasst */
}

/* Stil für den abgerundeten Button */
.rounded-button {
    background-color: #D3E5FF;
    font-family: 'Montserrat', sans-serif;
    color: black;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
}

.rounded-button:hover {
    background-color: #C395D8;
    /* Dunklere Farbe bei Hover */
}

/* Stil für die Fusszeile */
.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #fff;
    color: black;
    padding: 20px;
    box-sizing: border-box;
    border-top: 1px solid #000;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo img {
    max-height: 50px;
}

/* Stil für das Hintergrundbild */
.background-image-step3 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background-image: url('../media/img/montpellier_strand.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}