body {
    font-family: Arial, sans-serif;
    background-color: #f7e7d7;
    margin: 0;
    padding: 0;
    color: #5c2c2c;
    text-align: center;
}

nav {
    position: absolute;
    top: 20px;
    left: 20px;
}

.menu-icon {
    font-size: 24px;
    cursor: pointer;
}

.container {
    max-width: 800px;
    margin: 50px auto;
    position: relative;
}

.title {
    font-family: 'Charmonman';
	font-weight: 100;
    font-size: 53px;
    margin-bottom: 20px;
    color: #5c2c2c;
	text-align: left;
}

.content {
    position: relative;
    display: flex;
    justify-content: leftwards;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

.circle-image {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: -1;
}

.circle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.circle-text {
    position: absolute;
    padding: 20px;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    font-size: 16px;
    max-width: 200px;
    line-height: 1.5;
}

.green-circle {
    background-color:  rgba(100, 150, 100, 0.7);
    top: 1%;
    left: 44%;
	width: 160px;
    height: 160px;
}

.red-circle {
    background-color: rgba(150, 50, 50, 0.8);
     top: 40%;
    left: 43%;
	 width: 250px;
    height: 220px;
}


/* Mobile Optimierung */
@media (max-width: 768px) {
    body {
        font-size: 16px;
        padding: 10px;
    }

    nav ul {
        flex-direction: column;
        padding: 0;
    }

    nav ul li {
        margin: 10px 0;
    }

    nav ul li a {
        display: block;
        padding: 10px;
        background-color: #f0f0f0;
        text-align: center;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    .container, .content {
        width: 100%;
        padding: 0;
    }

    h1, h2, h3 {
        font-size: 1.5em;
    }

    .btn {
        width: 100%;
        padding: 15px;
        font-size: 1em;
    }
}

/* Hamburger-Icon Styling */
.menu-toggle {
    font-size: 2em;
    cursor: pointer;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
}

/* Animiertes Menü Styling */
.animated-menu {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background-color: #333;
    color: white;
    padding-top: 60px;
    transition: left 0.3s ease;
    z-index: 999;
}

.animated-menu ul {
    list-style: none;
    padding: 0;
}

.animated-menu ul li {
    margin: 20px 0;
}

.animated-menu ul li a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 10px 20px;
}

.animated-menu ul li a:hover {
    background-color: #575757;
}

/* Klasse für Anzeige des Menüs */
.show-menu {
    left: 0;
}
