* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html body {
  font-family: "Reddit Mono", monospace;
}
h1 {
  text-align: center;
}
a {
  text-decoration: none;
  color: white;
}
.header {
  background: teal;
  overflow: auto;
  font-weight: 1em;
}
.header nav h1 {
  float: left;
  padding: 20px;
  margin-bottom: 0px;
  color: white;
}
.header nav ul {
  float: right;
  list-style: none;
}
.header nav ul li {
  float: left;
}
.header nav ul li a {
  display: block;
  padding: 20px;
}

.header nav ul li a:hover {
  background: #333;
}
.active {
  background: #333;
}
.vp {
  background: url(../images/login-bg.png) center center / cover;
  min-height: 400px;
  text-align: center;
}
.vp-content {
  margin: auto;
  max-width: 600px;
  padding: 20px;
  padding-top: 140px;
  color: white;
  display: block;
}
.vp-content h1 {
  font-size: 50px;
}
.vp-content p {
  font-size: 15px;
  letter-spacing: 0.5px;
  line-height: 1.9em;
}
.btn {
  display: inline-block;
  padding: 15px 25px;
  border-radius: 30px;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  border: 0px;
}
.btn-primary {
  color: white;
  background: #333;
}
.btn-primary:hover {
  border: 1px solid #ddd;
  color: #333;
  background: white;
}
.features {
  padding: 100px 20px 100px 20px;
  overflow: auto;
  text-align: center;
}
.container {
  margin: auto;
  display: block;
  max-width: 1000px;
}
.feature {
  float: left;
  width: 45%;
  padding: 20px;
}
.person {
  background: url(../images/login-bg.png) center center / cover;
  height: 300px;
}
.reservation {
  padding: 100px 20px 100px 20px;
  text-align: center;
}
.btn-dark {
  color: white;
  background: teal;
}
.btn-dark:hover {
  border: 1px solid #ddd;
  color: #fff;
  background: orangered;
  margin-bottom: 0px;
}
.my-10 {
  margin-top: 10px;
  margin-bottom: 10px;
}
footer {
  text-align: center;
  background: teal;
  color: #fff;
  padding: 20px 0px 20px 0px;
}
footer p {
  margin-bottom: 0px;
}
.where {
  padding: 100px 0px 100px 0px;
  overflow: auto;
  min-height: 100vh;
}
.where-image {
  float: left;
  width: 45%;
  border: 1px solid #ddd;
  border-radius: 5px;
}
.where-text {
  float: right;
  width: 50%;
}
.where-text p {
  text-align: justify;
  min-height: 4px;
}
.underline {
  margin-bottom: 10px;
  border-bottom: 2px solid #ddd;
}
.chip {
  display: inline-block;
  width: 30px;
  border-radius: 100%;
  color: #fff;
  text-align: center;
}
.chip-purple {
  background: purple;
}
.chip-orangered {
  background: orangered;
}
.contact {
  padding: 100px 0px 100px 0px;
  min-height: 100vh;
}
.my-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}
.contact-form {
  max-width: 600px;
  margin: auto;
  padding: 20px;
}
.contact-form label {
  display: block;
  font-weight: 700;
}
.contact-form input,
textarea {
  display: block;
  width: 100%;
  padding: 15px;
  border: 1px solid #333;
}
.btn-orange {
  color: #fff;
  background: teal;
}
.btn-orange:hover {
  background: orangered;
  color: #fff;
}
