* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  color: #2a5c33;
  background-color: #f4f6ef;
  margin: 0 auto;
  padding: 0px;
}

.container {
  max-width: 70%;
  height: 100vh;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #cae28d;

}

.header-navigation {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 20px;
}

.navigation-list {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
}

.navigation-item {
    font-weight: bold;
}

.navigation-link {
    text-decoration: none;
    color: #2a5c33;
    font-weight: bold;
}

h1 {
    text-align: center;
    font-size: 32px;
    margin-top: 0;
    margin-bottom: 20px;
}
.introduction {
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-bottom: 10px;
}

.text {
    text-align: left;
}

.image-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.introduction-description {
    padding: 0 20px;
    margin-bottom: 20px;
}

.subheading {
    font-size: 24px;
    margin-bottom: 10px;
    text-align: left;
}

.contact,
.skills,
.code-example,
.education,
.language {
    min-width: 100%;
    padding: 0 20px;
    margin-bottom: 20px;
}

.contact-list,
.skills-list {
    list-style: none;
    padding: 0;
}

.code-example {
    display: flex;
    flex-direction: column;

}

.github-link {
    margin-bottom: 10px;
}