@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@300;700&display=swap');

body {
    background: linear-gradient(135deg, #1c1f24, #141617);
    color: #f8f8f8;
    font-family: "Archivo", sans-serif;
    margin: 0;
    padding: 0;
}

/* Header */
header {
    text-align: center;
    font-size: 60px;
    font-weight: 300;
    margin: 20px 0;
    color: #5d9b9b;
}
header h3 {
    font-weight: 200;
    font-size: 30px;
    color: #9fc0c0;
}

/* Buttons */
#sectionbtn {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}
.button {
    border-radius: 50px;
    background: linear-gradient(135deg, #5d9b9b, #466d6d);
    border: none;
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 20px;
    padding: 15px 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.button:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.5);
}

/* Über Mich Section */
#sectionuebermich {
    text-align: center;
    margin: 40px 20px;
    font-size: 20px;
    line-height: 1.6;
}
#sectionuebermich h1 {
    margin-bottom: 20px;
    font-size: 36px;
    color: #5d9b9b;
}

/* Skillset */
#sectionskillset {
    text-align: center;
    margin: 40px 20px;
}
#sectionskillset h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #5d9b9b;
}

.container {
    width: 80%;
    margin: 10px auto;
    background-color: #292b2e;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}
.cpp, .java, .python, .c, .bash, .batch {
    height: 30px;
    line-height: 30px;
    color: white;
    font-weight: bold;
    background: linear-gradient(135deg, #5d9b9b, #3a5f5f);
    border-radius: 25px;
    animation: grow 1s ease-in-out;
}
@keyframes grow {
    from {
        width: 0%;
    }
    to {
        width: var(--skill-level);
    }
}
.cpp { --skill-level: 45%; }
.java { --skill-level: 15%; }
.python { --skill-level: 25%; }
.c { --skill-level: 50%; }
.bash { --skill-level: 30%; }
.batch { --skill-level: 30%; }

/* Footer */
footer {

    text-align: center;
    padding: 20px 0;
    color: #9fc0c0;
    background: #1c1f24;
}
/* Lebenslauf-Seite */
#lebenslauf-inhalt {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.8;
}
#lebenslauf-inhalt h2 {
  color: #5d9b9b;
  margin-bottom: 10px;
}
#lebenslauf-inhalt ul {
  list-style: none;
  padding: 0;
}
#lebenslauf-inhalt ul li {
  margin: 5px 0;
}
