* {
  margin: 0;
  padding: 0;
}
.logo {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
}
.logo img {
  width: 130px;
}
.page {
  width: 1200px;
  margin: 0 auto;
  border: 30px solid #f2f2f2;
  padding-left: 70px;
  padding-right: 70px;
}
.page header {
  background-color: #276040;
}
.page header img {
  width: 50px;
}
.page nav {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  height: 50px;
  align-items: center;
}
.page nav a {
  text-align: center;
  text-decoration: none;
  color: #000;
  font-weight: 900;
}
.page h1 {
  line-height: 100px;
}
.page form {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
.page form div {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 15px 0px;
  border-radius: 20px;
}
.page form div label {
  border-radius: 20px;
  padding-left: 20px;
  padding-right: 10px;
  width: 80px;
  height: 30px;
  line-height: 30px;
  text-align: left;
  background-color: #f2f2f2;
  color: #000;
}
.page form div input {
  border-radius: 20px;
  width: 200px;
  height: 30px;
  border: 0px;
  outline: none;
  padding-left: 20px;
}
.page form button {
  background-color: #f2f2f2;
  color: #000;
  border: 0px;
  width: 150px;
  height: 40px;
  margin-top: 60px;
  border-radius: 30px;
}
.page .message {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.page .message textarea {
  width: 50%;
  resize: none;
  border: 2px solid #f2f2f2;
  outline: none;
  padding: 10px;
}
.page .message button {
  background-color: #f2f2f2;
  color: #000;
  border: 0px;
  width: 150px;
  height: 40px;
  margin-top: 60px;
}
.page footer {
  border: 1px solid #f2f2f2;
  height: 70px;
  line-height: 70px;
  margin-top: 200px;
}
.page footer p {
  color: #000;
  text-align: center;
}
.add button {
  border: 0px;
  margin-right: 30px;
}
