* {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
}

h1 { 
  font-weight: 700;
  font-size: 64px;
}

h2 {
  font-weight: 600;
  font-size: 48px;
  margin: 0;
}

p {
  color: #828282;
  font-size: 24px;
  line-height: 150%;
}

#content {
  max-width: 1280px;
  background-color: white;
  margin: 120px auto;
}

#content #introduction {
  display: flex;
  align-items: center;
}

#content #introduction h1 {
  margin-bottom: 0;
}

#content #introduction p {
  margin-right: 80px;
}

.projects {
  margin: 0 109px;
}

.project {
  display: flex;
  align-items: center;
  margin: 0;
}

.project .project-description:nth-child(even) {
  margin-left: 140px;
}

.project .project-description:nth-child(odd) {
  margin-right: 140px;
}

.tasks {
  margin: 0 150px;
}

.task {
  display: flex;
  align-items: center;
  margin: 0;
}

.task .subheading {
  color: black;
  font-weight: 500;
  margin-top: 0;
}

.task p {
  
}

.task .task-description:nth-child(even) {
  margin-left: 100px;
}

.task .task-description:nth-child(odd) {
  margin-right: 100px;
}

.separator {
  background-image: url(images/Separator.png);
  max-width: 1280px;
  height: 25px;
  margin: 0;
  /* border: 1px solid red; */
  clear: both;
}

form {
  max-width: 646px;
  margin: 56px auto 0 auto;
  /* border: 1px solid red; */
}

form label {
  display: block;
  color: #828282;
  font-weight: 400;
  font-size: 24px;
  line-height: 150%;
  margin-bottom: 30px;
}

form label input, form label textarea {
  display: block;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  width: 100%;
  color: black;
  box-sizing: border-box;
  font-size: 24px;
  line-height: 150%;
  padding: 10px;
}

form #submit {
  border-radius: 8px;
  border: 0px;
  background-color: black;
  color: white;
  font-weight: 400;
  width: 100%;
  box-sizing: border-box;
  font-size: 24px;
  padding: 8px;
}

@media screen and (max-width: 1280px) {
  #content {
    padding: 0 80px;
  }
}
