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

html {
  scroll-behavior: smooth;
}

.header {
  width: 100%;
  height: 600px;
  text-align: center;
  font-family: Inter;
  background-color: #f0f4ff;
}

.header h1 {
  color: black;
  font-size: 48px;
  font-weight: bold;
  margin: 0px 10% 18px;
  padding-top: 102px;
}

.header h2 {
  color: #333333;
  font-size: 32px;
  font-weight: normal;
  margin: 0px 10% 23px;
}

.header p {
  color: #555555;
  font-size: 20px;
  margin: 0 10% 56px;
}

.hire {
  width: 120px;
  height: 40px;
  background-color: #4f46e5;
  color: #ffffff;
  border: none;
  display: inline-block;
  border-radius: 10px;
  margin-right: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.hire:hover {
  background-color: #f0f4ff;
  color: #4f46e5;
  border: 1px solid #4f46e5;
  transform: scale(1.05);
}

.view {
  width: 120px;
  height: 40px;
  background-color: #f0f4ff;
  color: #4f46e5;
  border: 1px solid #4f46e5;
  display: inline;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.view:hover {
  background-color: #4f46e5;
  color: #ffffff;
  transform: scale(1.05);
}

.about {
  width: 100%;
  display: flex;
  flex-direction: column;
  height: fit-content;
  text-align: center;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  padding: 0px 5px 15px 5px;
}

.about h1 {
  margin-bottom: 20px;
  padding-top: 24px;
  display: block;
}

.about-content {
  max-width: 1500px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 12%;
}

.avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin-left: 10px;
}

.about p {
  max-width: 500px;
  text-align: left;
}

.what_i_do {
  width: 100%;
  height: 400px;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
  background-color: #f9fafb;
}

.what_i_do h1 {
  padding-top: 24px;
  margin-bottom: 32px;
}

.boxes {
  display: flex;
  width: 100%;
  min-width: 320px;
  max-width: 1500px;
  object-fit: cover;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 5%;
}

.box {
  height: 200px;
  width: 30%;
  max-width: 200px;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 10%;
}

.projects {
  width: 100%;
  height: 600px;
  text-align: center;
  background-color: #ffffff;
}

.projects h1 {
  margin-bottom: 32px;
  padding-top: 24px;
}

.projects_foto {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0px 5px 50px 5px;
}

.projects_foto a {
  width: 47%;
  max-width: 400px;
  height: 200px;
  object-fit: cover;
}

.projects_foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact {
  width: 100%;
  height: 400px;
  text-align: center;
  align-items: center;
  justify-content: center;
  background-color: #f9fafb;
}

.contact h1 {
  margin-bottom: 32px;
  padding-top: 24px;
}

.div_form {
  text-align: center;
  align-items: center;
  justify-content: center;
  display: flex;
}

.form {
  min-width: 300px;
  max-width: 500px;
}

.form input {
  width: 100%;
  height: 40px;
  margin-bottom: 10px;
  border: 1px solid #cccccc;
  padding-left: 10px;
  align-items: center;
  border-radius: 7px;
}

.form textarea {
  width: 100%;
  height: 100px;
  margin-bottom: 20px;
  resize: none;
  border: 1px solid #cccccc;
  padding-left: 10px;
  border-radius: 7px;
}

.form button {
  width: 200px;
  height: 40px;
  background-color: #e4ebff;
  color: #4f46e5;
  border: 1px solid #4f46e5;
  display: inline;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.form button:hover {
  background-color: #4f46e5;
  color: #ffffff;
  transform: scale(1.05);
}

.bottom {
  height: 100px;
  background-color: #111827;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}
