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

body {
  font-family: "Arial", sans-serif;
  background-color: #fdf5f0;
  color: #111;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

main {
  margin-top: 80px;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
}

.nav {
  text-align: center;
  padding: 2rem;
}
.nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.nav a {
  font-weight: bold;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff8f4;
  padding: 1rem;
  z-index: 1000;
}
.nav ul {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav ul li a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
}
.nav ul li a:hover {
  text-decoration: underline;
}

.intro-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 2px solid blueviolet;
  padding: 2rem;
  margin: 4rem auto;
  border-radius: 8px;
  flex-wrap: wrap;
}
.intro-box .intro-text {
  max-width: 60%;
}
.intro-box .intro-image img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid blueviolet;
}
.intro-box .social-icons {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
}
.intro-box .social-icons a {
  font-size: 1.5rem;
}
.intro-box .social-icons a:hover {
  color: blueviolet;
}
.intro-box .social-icons a img {
  width: 24px;
  height: 24px;
  filter: grayscale(100%);
  transition: filter 0.3s;
}
.intro-box .social-icons a img:hover {
  filter: none;
}

.section-box {
  background: #fff;
  border-radius: 8px;
  padding: 2rem;
  margin: 2rem auto;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  max-width: 800px;
}
.section-box h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.section-box p {
  font-size: 1rem;
}

.intro-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border: 2px solid blueviolet;
  border-radius: 8px;
  padding: 2rem;
  margin: 4rem auto;
  max-width: 900px;
  background: #fdf5f0;
}
.intro-box .intro-text {
  max-width: 60%;
  min-width: 260px;
}
.intro-box .social-icons {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
}
.intro-box .intro-image img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid blueviolet;
}

.section-box {
  background-color: #fdf5f0;
  border: 2px solid blueviolet;
  border-radius: 8px;
  padding: 2rem;
  margin: 3rem auto;
  max-width: 900px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}
.section-box h2 {
  margin-top: 0;
  font-size: 1.6rem;
  color: #111;
}
.section-box p, .section-box li {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}
.section-box ul {
  padding-left: 1.5rem;
  margin-top: 1rem;
}

.page-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1rem;
}

/*# sourceMappingURL=style.css.map */
