*{
  margin: 0;
  padding: 0;
}

/* header */
header {
  background-color: blueviolet;
  height: 60px;
  
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  text-align: center;
}
.head-taitle {
  padding-left: 40px;
  font-family: "Pacifico", cursive;
  font-size: 25px;
}

.head-taitle a {
  text-decoration: none;
  color: skyblue;
}

.list-tab {
  display: flex;
  padding-right: 40px;
  list-style: none;
  
}

.list-item {
  padding-left: 30px;
  
}

.list-item a {
  text-decoration: none;
  color: #fff;
}

/* contact */
main {
  background-color: lightskyblue;
  font-weight: bold;
}

.contact {
  max-width: 900px;
  margin: 0 auto;
  
}
.contact h4 {
  font-size: 40px;
}
.contact form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 10px;
  padding-bottom: 100px;
}
.contact form label {
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 5px;
}
.contact form input {
  width: 400px;
  height: 30px;
  border: 1px solid lightgray;
  border-radius: 5px;
  padding: 6px;
  font-size: 16px;
}
.contact form textarea {
  width: 400px;
  height: 200px;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid lightgray;
  font-size: 16px;
}
.contact form .submit {
  background-color: #f1f1f1;
  width: 200px;
  height: 80px;
  margin-top: 30px;
  font-weight: 700;
  font-size: 22px;
  text-align: center;
}


/* footer */
footer {
  background-color: #333;
  color: #fff;
}

.footer-list {
  display: flex;
  justify-content: center;
  padding: 30px 0;
}

.footer-item {
  list-style: none;
  padding: 0 25px;
}

.footer-item a {
  text-decoration: none;
  color: #fff;
}

.copyright {
  text-align: center;
  padding-bottom: 50px;
}