* {
  box-sizing: border-box;
}

body {
  background-color: #c8ddff;
  font-family: "Inter Tight", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

h1 {
  margin-top: 0;
}

a {
  text-decoration: none;
  color: #000;
}

nav {
  display: flex;
  justify-content: space-between;
  font-size: 24px;
}

nav ul {
  display: flex;
}

nav ul li {
  list-style: none;
  margin: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

.main-content {
  margin: 0 auto;
  max-width: 1000px;
}

.hero {
  display: flex;
  gap: 50px;
  margin-bottom: 100px;
}

.hero-image {
  width: 240px;
  height: 320px;
  border-radius: 20px;
}

.hero-text {
  font-size: 24px;
}

.project {
  display: flex;
  gap: 50px;
}

.project p {
  max-width: 500px;
}

.project-image {
  border-radius: 20px;
}

.project-text {
  font-size: 24px;
}

/*
Ini mulai halaman about
*/

.main-about {
  margin: 0 auto;
  max-width: 1000px;
}

/* form*/

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 300px;
  margin: auto;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  background: #fff;
}

form div {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
  width: 100%;
}

label {
  margin-bottom: 5px;
  font-weight: bold;
}

input,
textarea {
  font-family: "Inter Tight", sans-serif;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  padding: 10px;
  border: none;
  background: #007bff;
  color: white;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
}

h3 {
  text-align: center;
}
