/* Basis-Styles */
body {
    background-color: #000000;
    background-image: url('/img/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-family: Arial, sans-serif;
    text-align: center;
}

/* Header */
header {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Das Menü und der Markenname bleiben links */
    position: fixed; /* Fixiert den Header oben */
    top: 0;
    left: 0;
    width: 10%;
    padding: 20px 20px;
    background-color: transparent;
    z-index: 200;
}
/* Logo */

.logo-enter {
      font-family: 'Arial Black', sans-serif;
      font-size: 48px;
      color: #ff0000;
      margin-left: auto;
      margin-right: 1%;  
      letter-spacing: 2px;
      position: relative;
      left: 30%;
      
    
    }
    .logo-AG {
    font-family: 'Arial Black', sans-serif;
    color: white;
    font-size: 48px;
    margin-left: auto;
    margin-right: 1%;
    letter-spacing: 2px;
    left: 30%;
    position: relative;
  }
/* Menü-Button */
.menu-toggle {
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    color: rgb(248, 5, 5);
}

/* Overlay */
.overlay {
    height: 0;
    width: 19%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.308);
    overflow: hidden;
    transition: height 0.5s ease-in-out;
    z-index: 1000;
    border-radius: 10px 30% 250%;
}

/* Schließen-Button */
.overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 141px;
    font-size: 40px;
    color: rgb(253, 0, 0);
    text-decoration: none;
    cursor: pointer;
}

/* Overlay-Inhalt */
.overlay-content {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    color: rgb(3, 3, 3);
}

.overlay-content a {
    padding: 15px;
    text-decoration: none;
    font-size: 25px;
    font-weight: 800;
    color: rgb(248, 6, 6);
    display: block;
    transition: color 0.3s;
}

/* Wenn das Menü geöffnet ist */
.overlay.open {
    height: 50%;
}

.container {
    background: rgba(0, 0, 0, 0.308);
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
    opacity: 0;
    transform: translateY(-50px);
    animation: fadeIn 2.5s ease-out forwards;
    animation-delay: 1s;
}

.content_1 {
    background-color: transparent;
    border-radius: 0 0.5em 0.5em;
    border: thin solid;
    padding: 0.5em;
    width: auto; /* Breite automatisch anpassen */
    height: auto; /* Höhe automatisch anpassen */
    position: fixed;
    top: 25%;}

.benutzer-image{
  width: 100%;
  max-width: 80px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}
/* Animationen */

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
        border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
    }
}

h1 {
    margin-bottom: 10px;
    animation: slideIn 1.5s ease-out forwards;
}

p {
    font-size: 18px;
    opacity: 0;
    animation: fadeInText 2s ease-out forwards 1s;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInText {
    to {
        opacity: 1;
    }
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    header {
        padding: 20px 10px;
    }

    .overlay {
        width: 100%;
    }

    .overlay .closebtn {
        right: 20px;
    }

    .overlay-content a {
        font-size: 18px;
    }

    .container {
        padding: 20px;
        max-width: 100%;
    }

    h1 {
        font-size: 24px;
    }

    p {
        font-size: 16px;
    }
}

.footer {
    position:fixed;
    top: 90%;
    left: 0;
    width: 100%;
    height: 2%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    
}