body {
  font-family: sans serif;
}
header {
  text-align: center;
  background-color: #ffffff;
  padding: 30px 30px 20px;
 }
header h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}
nav ul {
  display: flex;
  justify-content: space-around;
  font-size: 20px;
  font-weight: 700;
}
nav .contact {
  color: red;
}
.hero-box {
  width: 85%;
  height: 500px;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  display: block;
}
.event {
  background-color: black;
  color: #ffffff;
  width: 85%;
  margin: 0 auto;
  padding: 64px 0;
}
.event h2 {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
} 
.event p {
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 20px;
}
.event hr {
  border: solid 2px #2cb67d;
  margin: 0 auto 40px;
  width: 200px;
 
    }
.event form {
    max-width: 540px;
    margin: 0 auto;
     }
.event label {
  display: block;
   margin-bottom: 16px;
   font-weight: 500;
  }
.event input {
  background-color: #ffffff;
  margin-bottom: 30px;
  font-weight: 500;
}
.event input, .event textarea  {
  background-color: #ffffff;
  display: block;
  width: 100%;
  padding: 13px 16px;
  margin-bottom: 30px;
  color: #16161a;
}
.event input[type=submit] {
 text-align: center;
 background-color: #7f5af0;
 color: #ffffff;
 font-weight: 700;
 padding: 20px 16px 22px;
 letter-spacing: 6px;
 border-radius: 60px;
 transition-duration: 0.2s;
}



.event input[type=submit]:hover {
  background-color: #2cb67d;
}


aside {
  text-align: center;
  padding: 30px 20px;
  margin-bottom: 20px;
}
aside h2 {
  font-size: 36px;
  font-weight: 500;
  padding-bottom: 25px;
}
aside h3 {
  font-size: 18px;
  font-width: 500;
  padding-bottom: 25px;
}
figure img {
  width: 200px;
  padding-bottom: 50px;
  margin-bottom: 10px;
}

 
footer {
  text-align: center;
  padding: 10px 0 20px;
}