#root {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

html, body {    
    font-family: Arial, sans-serif;
    color: #000000;
    margin: 0;
}

#topCircle {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, 10%);
  width: 150%;
  height: 40%;
  background-color: #b2b7ff;
  border-radius: 50%;
  z-index: -1; /* Always in front */
}

.main-content {
    flex: 1;
}

.nav-btn button {
  margin: 0 10px;
  padding: 10px 50px;
  border: none;
  background-color: #b2b7ff;
  color: black;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.nav-btn button:hover {
  background-color: #d4d7ff;
}

.info-card {
  margin-top: 100px;
  padding: 50px;
  background-color: #dcdfff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);   /* Change the color here */
}


.header {
    background-color: #b2b7ff !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer {
    background-color: #9da3ff !important;
    text-align: center;
  padding: 15px 0;
}


.profile-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px; /* adjust as needed */
  position: relative;
  overflow: hidden;
}

.profile-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}

.profile-image {
  position: absolute;
  transition: transform 0.5s ease;
  z-index: 2;
}

.profile-text {
  opacity: 0;
  z-index: 1;
  transition: opacity 0.5s ease;
  color: #333;
}

.profile-container:hover .profile-image {
  transform: translateX(400px); /* Move image to the left */
}

.profile-container:hover .profile-text {
  opacity: 1; /* Reveal text */
}

.profile-image {
    max-width: 100%; /* Verhindert, dass das Bild die Breite des Containers überschreitet */
    margin: 10px; /* Abstand vom oberen Rand */
    margin-left:20% ; 
    right: 10px; /* Abstand vom rechten Rand */
    padding: 5%;
    width: 250px; /* Größe des Bildes anpassen */
    height: auto; /* Proportionen beibehalten */
    border-radius: 50px; /* Rundes Bild */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4); /* Schatten für das Bild */
}

.container {
    padding: 50px;
    z-index: 4;
}

/* Reset styles to make sure everything looks consistent */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Style for clear */
.clear {
    clear: both;
}

/* Sprachen-Container */
.image-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Kleinere Bilder */
/* .small-image, .small-image1 {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
    border: 1px solid #b2b7ff;
} */