* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 32px 16px;
  font-family: 'Montserrat';
}

img#photo {
  width: 100px;
  border-radius: 50%;
  border: 2px solid black;
  margin-bottom: 16px;
}

h2 {
  margin-top: 64px;
}

form {
  display: flex;
  flex-direction: column;
  margin-top: 16px;
}

form label {
  margin-bottom: 8px;
}

form input,
form textarea {
  border: 1px solid black;
  border-radius: 4px;
  margin-bottom: 16px;
  min-height: 32px;
  font-size: 16px;
  padding-inline: 8px;
  font-family: 'Montserrat';
  color: rgba(0, 0, 0, 0.886);
}

form textarea {
  padding-top: 8px;
}

form button {
  cursor: pointer;
  border: none;
  border-radius: 4px;
  color: white;
  background-color: black;
  height: 32px;
  font-size: 16px;
  font-weight: 700;
}

section#social {
  margin-top: 32px;
}

section#social img {
  cursor: pointer;
  width: 50px;
  transition: all 100ms ease-in-out;
}

section#social img:hover {
  filter: brightness(1.1);
}