@import url('https://fonts.googleapis.com/css2?family=Fugaz+One&display=swap');

.navbar {
    position: fixed;
    width: 100%;
    font-family: 'Fugaz One', cursive;
}

.navbar-brand {
    color: #fff;
    font-size: 1.8em;
    font-weight: 300;
}

.navbar-nav {
    margin-left: auto;
}

.navbar-nav a {
    color: #fff;
    font-size: 1.2em;
    margin-right: auto;
}

.fullscreen-bg {
    position: relative;
    overflow: hidden;
}

.fullscreen-bg img {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    display: block;
}

.center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 4em;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-family: 'Fugaz One', cursive;
}

@media only screen and (max-width: 600px) {
    .navbar-brand {
        font-size: 1.5em; /* Reduziere die Schriftgröße für kleinere Bildschirme */
    }

    .navbar-nav a {
        font-size: 0.9em; /* Reduziere die Schriftgröße für kleinere Hurensöhne */
    }

    .center-text {
        font-size: 1.5em; /* Reduziere die Schriftgröße für kleinere Bildschirme */
    }
}

