/* ============================================================================================ */
/* ==================================== Allgemeine Styles  ==================================== */
/* ============================================================================================ */

html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;;
    font-family: Arial, sans-serif;

    background-image: url("/images/mcu_wallpaper.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

main {
    flex: 1;
    /* padding: 20px;
    color: white;
    text-align: center; */
}

h1 {
    color: white;
    font-size: 50px;
    padding: 20px;
}


/* ============================================================================================ */
/* ========================================== Navbar ========================================== */
/* ============================================================================================ */

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 10px;
    /* background-color: #2C241E; */
}

/* Navbar a Elemente */
.navbar a {
    color: white;
    text-decoration: none;   /* Unterstrich weg */
    font-weight: 550;
    font-size: 24px;
}

/* ---------------------------------------------------- */

/* Punkte von Menü Elementen entfernen */
.nav-elements {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 50px
}

/* Punkte von Menü Elementen entfernen */
.nav-elements a {
    display: flex;
    align-items: center;
    gap: 15px
}

/* ---------------------------------------------------- */

/* Punkte von Menü Elementen entfernen */
.nav-elements-right {
    /* display: flex; */
    list-style: none;
    gap: 50px
}

/* Punkte von Menü Elementen entfernen */
.nav-elements-right a {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
    padding: 5px;
}

/* Punkte von Menü Elementen entfernen */
.nav-elements-right input[type="text"] {
    width: 50p;
}

/* ---------------------------------------------------- */

/* Firmenlogo */
.nav-logo {
    height: 85px;
}

/* Icons in der Navbar */
.nav-icon {
    height: 30px;
}

.nav-icon-right {
    height: 25px;
}

/* ============================================================================================ */
/* ========================================== Footer ========================================== */
/* ============================================================================================ */

footer {
    /* background-color: #222; */
    color: white;
    text-align: center;
    padding: 15px;
}