
/* Grundlegende Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-image: url('https://image.futurezone.at/images/cfs_landscape_1864w_1049h/8019742/microsoftnostalgicwindowswallpaper4k.jpg'); /* Zufälliges Hintergrundbild */
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    height: 100vh;
}

nav {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 0px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: space-between;
}

nav .left {
    display: flex;
}

nav .right {
    display: flex;
    margin-left: auto;  /* Stellt sicher, dass die "right"-Links nach rechts verschoben werden */
}

nav ul {
    padding: 3px;
    list-style: none;
}

nav ul li {
    padding: 3px;
}

nav ul li a{
    font-family: Arial;
    color: white;
    font-size: 24px;
    text-decoration: none;
    padding: 28px;
    display: block;
}

nav ul li a:hover{
    background-color:  rgba(0, 0, 0, 0.3);
    border-radius: 12px;
}

nav ul li ul{
    display: none;
    position: absolute;
    background-color: #338585;
    padding: 7px;
    border-radius: 12px;
}

nav ul li:hover ul{
    display: block;
}

nav ul li ul li a{
    color: white;
    padding: 16px 20px;
    border-radius: 10px;
}

nav ul li ul li a{
    background-color: #296b6b;
}

/* Inhalt der Seite */
.content {
    margin-top: 100px;
    padding: 20px;
}