body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: rgb(249 248 249);
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;

}

.nav_container {
    display: flex;
    gap: 1rem;
    font-size: 1.2rem;
}

a {
    text-decoration: none;
    color: black;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    margin-right: 3rem;
    font-family: "Alice", serif;
    font-weight: 400;
    font-style: normal;
}

a:hover {
    background-color: rgb(164 201 190)
}

.octopus_img {
    height: 170px;
}

.img_content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 3rem;
    height: 60rem;
}

.background_img {
    opacity: 0.87;
    width: 80%;
    max-height: 100%;
    object-fit: contain;
}

.image_text {
    background-color: rgb(164 201 190);
    padding-top: 3.5rem;
    padding-left: 3rem;
    z-index: 2;
    color: white;
    position: absolute;
    width: 40rem;
    font-size: 2.5rem;
    height: 13rem;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    font-family: "Alice", serif;
}



/* Projekte Bereich */
.projects_section {
    padding: 2rem;
    background-color: #f5f5f5;
    text-align: center;
}

.projects_section h2 {
    color: rgb(164 201 190);
    margin-bottom: 2rem;
}

.card_container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.card {
    background-color: white;
    border: 2px solid rgb(164 201 190);
    padding: 1.5rem;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    display: flex;
    flex-direction: column;
   align-items: center;
}

.card h3 {
    margin-top: 0;
    color: rgb(164 201 190);
    font-family: "Alice", serif;
    font-weight: 400;
    font-style: normal;
}

h2 {
    font-family: "Alice", serif;
    font-weight: 400;
    font-style: normal;
}

a {
    font-family: "Alice", serif;
    font-weight: 400;
    font-style: normal;
}

audio {
    width: 100%;
    margin-top: 1rem;
}

.skills_container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skills {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70%;
    background-color: rgb(164 201 190);
}

.skills > h2 {
    color: white;
        font-family: "Alice", serif;
    font-weight: 400;
    font-style: normal;
}

.skills > h3 {
    color: white;
        font-family: "Alice", serif;
    font-weight: 400;
    font-style: normal;
}

.sprachen_container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sprachen {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sprachen > h3 {
    color: rgb(164 201 190);
        font-family: "Alice", serif;
    font-weight: 400;
    font-style: normal;
}

.sprachen > h2 {
    color: rgb(164 201 190);
        font-family: "Alice", serif;
    font-weight: 400;
    font-style: normal;
}

@media (max-width: 799px) {
  .background_img {
    display: none;
  }

  .img_content {
    height: 20rem;
  }

  .image_text{
    padding: 1rem;
    width: 80%;
    font-size: 1.8rem;
  }

  .projects_section {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
}