/* Allgemeine Styles */
* {
    margin: 15px;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: rgba(84, 233, 220, 0.514);
    color: #333;
    line-height: 1.6;
}

.rundeEcken{
    border-radius: 50%;
    border: solid;
    border-color: white;
    max-height: 250px;
    background-color: #fff;
    box-shadow: 18px 4px 6px rgba(0, 0, 0, 0.3);
    align-items: center;
    
}

.wrapper {
    max-width: 1200px;
    margin: 15px;
    padding: 20px;
    background-color: hsla(46, 57%, 82%, 0.604);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header {
    
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    color: rgba(1, 14, 11, 0.541);
}

nav ul {
    position: sticky;
    list-style: none;
    display: flexbox;
    align-items: center;
    text-align: right;
   
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ff69b4;
    
}

.calendar ul a {
    color: black;
    text-decoration: none;
}

.calendar ul {
    list-style: none;
    text-decoration: none;
    border: #ff69b4;
    margin: 10px;
    row-gap: 10px;
    padding: 15px;
}

footer {
    text-align: center;
    padding: 20px 0;
    background-color: rgba(1, 14, 11, 0.541);
    color: #fff;
    margin-top: 0px;
    border-radius: 10px;
}

footer a {
    color: #ff69b4;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}


.calendar {
padding: 10px 15px;
margin: 10%;
border: solid;
border-radius: 5px;
cursor: pointer;
text-align: left;
text-decoration: none;
 transition: background-color 0.3s ease;
   }