@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400&display=swap');
body {
  background-color: #fff8f0;
  font-family: 'Poppins', sans-serif;
}
.container {
  margin: 0 auto;
  width: 960px;
  /* background-color: skyblue; */
}

section:not(:first-child) {
  margin-bottom: 2.5rem;
}

nav {
  margin-top: 2.5rem;
  /* margin-bottom: 3rem; */
  height: 4rem;
  background-color: #392f5a;
  color: #fff8f0;
  display: flex;
  align-items: center;
}

nav ul {
  display: flex;
  gap: 3rem;
  list-style: none;
  font-size: 1.5rem;
  justify-content: center;
  align-items: center;
}

nav ul li {
  transition: 0.3s;
}

nav ul li:hover {
  transform: scale(0.9);
}

#banner {
  width: 100%;
  height: 25rem;
}

#banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  box-shadow: 0 6px 2px -2px rgba(57, 47, 90, 0.2);
}

footer ul li {
  transition: 0.3s;
}

footer ul li:hover:not(:last-child) {
  transform: scale(0.9);
}

nav ul li a {
  text-decoration: none;
  color: #fff8f0;
}

#about img {
  width: 15rem;
  height: 20rem;
  object-fit: cover;
  object-position: 0% 10%;
  border-radius: 20px;
  float: left;
  margin-right: 2rem;
}

h1,
h2 {
  color: #392f5a;
}

a {
  text-decoration: none;
  color: #392f5a;
}

em {
  font-weight: bold;
  color: #5f8f89;
}

#hobbies li {
  list-style: none;
}

#hobbies .bullets li {
  list-style: circle;
}

#hobbies .hobby-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

footer ul {
  display: flex;
  align-items: center;
  color: #fff8f0;
  background-color: #392f5a;
  height: 3.5rem;
  gap: 3rem;
}

footer ul li {
  list-style: none;
}

footer ul li a {
  text-decoration: none;
  color: #fff8f0;
}

h3 {
  color: #5f8f89;
}
