@font-face {
    font-family: 'Fira Sans';
    src: url('./fonts/fira-sans-v17-latin-regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Passion One';
    src: url('./fonts/passion-one-v18-latin-regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Fira Sans', Arial, sans-serif;
    overflow-x: hidden;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(242, 241, 238, 0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.logo {
    height: 50px;
    opacity: 0.8;
}

.parallax {
 
    background-image: url('./static/paraback.jpg');
    height: 30vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 0;
}

.section {
    transform: translateZ(0);
    will-change: transform;   
    text-align: center;
    padding: 30px 20px;
    min-height: 300px; /* Angepasst für weniger Text */
    background-color:  rgb(242, 241, 238);
    margin: 0;
}

/* Spezifische Anpassungen für den ersten Abschnitt */
.first-section {
    padding: 10px 20px; /* Noch weiter reduziertes Padding für den ersten Abschnitt */
    min-height: 150px; /* Optional: Setze eine spezifische minimale Höhe, falls benötigt */
}


h1 {
    font-family: 'Passion One', cursive;
    font-size: 32px;
    margin-bottom: 15px;
    color: rgb(5, 5, 166); /* Tiefes Blau */
    font-weight: lighter; /* Versuch, die Schrift leichter zu machen */
}


p {
    font-size: 16px;
}
