.menuleiste {
  background-color: #504637;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  position: relative;
}

.menuleiste a {
  color: white;
  text-decoration: none;
  margin: 0 20px;
  font-weight: bold;
  padding: 10px;
  border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.menuleiste a:hover {
    color: #FCF2E2;
    background-color: #6e5c42;
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #333;
  color: white;
  text-align: center;
  padding: 10px 0;
}

footer a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.footer a:hover {
    color: #fcf2e2;
    background-color: #6e5c42;
}

.banner {
  width: 100%;
  height: 100px;
  background-color: #FCF2E2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner img {
  height: 75px;
  width: auto;
}

.banner_big {
  width: 100%;
  height: 200px;
  background-color: #FCF2E2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner_big img {
  height: 175px;
  width: auto;
}

.login-btn {
  position: absolute;
  right: 20px;
  background-color: #2e8b57;
  padding: 10px 20px;
  border-radius: 6px;
}

.login-btn:hover {
  background-color: #256f46;
  color: white;
}

.login {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
}

.login > div {
  background-color: #FCF2E2;
  padding: 40px 50px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.login > div:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.login-card h2 {
  margin-bottom: 20px;
  color: #504637;
}

.g-signin2 {
    border-radius: 10px;
}


.content {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 10px;
}

.content h1 {
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
    color: #004d40;
}

.content h2 {
    font-size: 1.5em;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #00695c;
}

.content h3 {
    font-size: 1.2em;
    margin-top: 15px;
    margin-bottom: 5px;
    color: #00796b;
}

.content p, 
.content ul {
    font-size: 1em;
    margin-bottom: 15px;
}

.content ul {
    padding-left: 20px;
}

.content ul li {
    margin-bottom: 8px;
}