.container {
    width: 80%; /* Breite des Containers */
    margin: 0 auto; /* Zentriert den Container horizontal */
    background-color: #2c6acd; /* Hintergrundfarbe des Containers */
    z-index: -1;
    outline: none;
}

.logo-container {
    position: absolute;
  justify-content: center;
  align-items: center;
  display: flex;
    top: 50%;
    left: 47%;
    width: 106%;
    height: 100%;
    transform: translate(-50%, -50%);
    z-index: -1;
    background-color: #777781;
   /* outline: none;
    background-image: url('Kopie_WSE.png');
    background-repeat: no-repeat;
    background-position: center; */
}

.background{
    background-image: url('logo_WSE_XL_web.png');
    background-repeat: no-repeat;
    background-position: 60% 50%;
    background-size: 80% auto;
    max-width: 2800px;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.link-container {
    position: absolute;
    top: 97%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    display: flex; /* Flexbox */
    justify-content: center; /* Horizontal zentrieren */
    align-items: center; /* Vertikal zentrieren */
}

.link-container a {
    display: block;
    margin: 0 20px;
    color: #050505;
    text-decoration: none;
    font-size: 18px;
    position: relative;
    padding: 3px;
}

.link-container a:hover {
    color: #0095ff;
}
.link-container a::after{
    content: '';
    height: 2px;
    width: 0%;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 150ms ease-in-out;
}
.link-container a:hover::after{
    width: 100%;
}


 .oval-bubble img {
outline: none;
background-image: url(logo_WSE_XL_web.png);
background-repeat: no-repeat;
    top: 50%;
    left: 50%;
  max-height: 80vw;
    max-width: 60vw; 
    width: 300%;
    height: 300%; 
    z-index: -1;
   /* border-radius: 30%; /* Runden die Ecken des Bildes */ 
} 
/* Media Query für kleinere Bildschirmgrößen */
@media screen and (max-width: 300px) {
    .background {
        top: 50%;
         /* Abstand von unten */
        right: 50%; /* Abstand von rechts */
    }
}

@media screen and (max-width: 1100px) {
    .link-container {
        top: 98%;
         /* Abstand von unten */
        right: 30%; /* Abstand von rechts */
    }
}
@media (min-width: 3000px) {
    /* Stilregeln für Bildschirme mit einer Breite von mindestens 2000px */
    .background {
    top: 40%;
    }
  }