* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

nav {
  background-color: transparent;
  display: flex;
  width: 100%;
  align-items: center;
  flex-wrap: wrap;
  padding: 5px 0;
  position: fixed;
  z-index: 2;
}

nav ul {
  flex: 1;
  text-align: center;
  padding: 10px 30px;
}

nav ul li {
  display: inline-block;
  list-style: none;
  margin: 10px 30px;
}
nav ul li a {
  font-size: 20px;
  font-weight: 500;
  color: white;
  text-decoration: none;
  position: relative;
}

nav ul li a:hover {
  color: rgb(49, 64, 114);
}

nav ul li a::after {
  content: " ";
  width: 0;
  height: 5px;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translate(-50%);
  background: rgb(49, 64, 114);
  transition: width 0.3s;
}

section {
  background-color: rgb(202, 198, 193);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 20px;
}

.about {
  margin-top: 100px;
  width: 500px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about h2 {
  color: rgb(185, 102, 46);
  font-weight: 800;
  margin-bottom: 20px;
}

.about h1 {
  color: white;
  font-weight: 800;
  font-size: 50px;
  margin-bottom: 10px;
}

.about p {
  color: rgb(185, 102, 46);
}

.about img {
  width: 500px;
  height: auto;
  margin: 20px;
}

.contact {
  padding: 20px;
  color: white;
  width: 600px;
  border: 2px solid white;
  border-radius: 30px;
  margin: 30px;
}

.contact-text {
  color: rgb(185, 102, 46);
  text-align: center;
  font-weight: 600;
}

.contact-form {
  color: rgb(185, 102, 46);
  padding-top: 20px;
  margin: 20px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  font-family: "Roboto Mono";
  border-top: 2px solid rgb(185, 102, 46);
}

.contact-form input {
  color: rgb(49, 64, 114);
}

.contact-form input:focus {
  border: 1px solid rgb(49, 64, 114);
}

.contact-form textarea {
  color: rgb(49, 64, 114);
}

.form-control {
  margin: 10px 0;
}

.contact-form button {
  color: rgb(185, 102, 46);
  background-color: white;
  border: none;
  margin-top: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  border-radius: 20px;
}

.contact-form button:hover {
  background-color: rgb(49, 64, 114);
  color: white;
}

.footer-wrapper {
  padding-top: 50px;
  color: white;
  width: 100%;
  height: 300px;
  background-color: rgb(202, 198, 193);
  display: flex;
  justify-content: space-around;
}

.column {
  display: flex;
  flex-direction: column;
}

.column a {
  text-decoration: none;
  color: white;
  padding: 5px;
  font-weight: 500;
  font-size: 20px;
}

.column a:hover {
  color: rgb(49, 64, 114);
}

.column .icon {
  font-size: 28px;
  color: white;
}

.column .icon:hover {
  color: rgb(49, 64, 114);
}
