body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    background-color: #87CEEB;
    font-family: sans-serif;
    color: #333;
}

.container {
    position: relative;
    height: 100vh;
    width: 100vw;
}

.content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding-top: 30px;
}

/* Menü */
.menu-container {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.hamburger-icon {
    font-size: 30px;
    cursor: pointer;
    padding: 10px 15px;
    background-color: #003366;
    color: white;
    border-radius: 5px;
    display: block;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.hamburger-icon:hover {
    background-color: #004488;
}

.menu-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #87CEEB;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 100;
    border-radius: 5px;
}

.menu-link {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.menu-link:hover {
    background-color: #ddd;
}

.menu-links.show {
    display: block;
}

/* Hügel */
.hills-svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: auto;
    z-index: 1;
}

/* Uhr */
.clock-container {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    text-align: center;
}

.clock {
    width: 120px;
    height: 120px;
    background-color: #FFD700;
    border-radius: 50%;
    border: 5px solid #FFA500;
    position: relative;
    margin: 0 auto;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background-color: #4B0082;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.hour-hand, .minute-hand, .second-hand {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform-origin: bottom;
    background-color: #4B0082;
    border-radius: 2px;
}

.hour-hand { width: 6px; height: 30%; margin-left: -3px; }
.minute-hand { width: 4px; height: 40%; margin-left: -2px; }
.second-hand { width: 2px; height: 45%; margin-left: -1px; background-color: #FF4500; }

.date-display {
    margin-top: 10px;
    font-size: 0.9em;
    color: #003366;
    font-weight: bold;
}
