* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 24px;
}

body {
  background-color: rgb(32, 94, 45);
  color: white;
}

.logo {
  display: flex;
  width: 60%;
  height: auto;
  margin: auto;
}

.navbar {
  min-height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-menu {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.nav-link {
  transition: 0, 7s ease;
  margin-right: 20px;
  text-decoration: none;
  color: azure;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 40px;
  height: 5px;
  background-color: rgb(252, 253, 252);
  margin: 5px auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.hamburger div {
  width: 30px;
  height: 3px;
  background-color: rgb(32, 94, 45);
  margin: 5px auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
  .hamburger {
    display: block;
  }
  .hamburger .active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger .active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger .active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    background-color: rgb(32, 94, 45);
    flex-direction: column;
    align-items: center;
    width: 100%;
    transition: 0.3s;
  }

  .nav-item {
    margin: 16px 0;
  }
  .nav-menu.active {
    left: 0;
  }
}

.cabin {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  object-fit: cover;
  margin-right: 2;
}

.cabin-by-lake {
  width: 50px;
  height: 50px;
  display: flex;
  width: 60%;
  height: auto;
  margin: auto;
  border-radius: 7%;
}

.hottub {
  width: 50px;
  height: 50px;
  display: flex;
  width: 60%;
  height: auto;
  margin: auto;
  border-radius: 7%;
}

.shower {
  width: 50px;
  height: 50px;
  display: flex;
  width: 60%;
  height: auto;
  margin: auto;
}

.boat {
  width: 50px;
  height: 50px;
  display: flex;
  width: 60%;
  height: auto;
  margin: auto;
}

.sidebyside {
  width: 50px;
  height: 50px;
  display: flex;
  width: 60%;
  height: auto;
  margin: auto;
}

.index-image {
  display: flex;
  width: 60%;
  height: auto;
  margin: auto;
  border-radius: 7%;
}

.form-row {
  display: flex;
  justify-content: center;
  margin: 10px 0;
}

.contact-us-form {
  align-content: center;
  margin: 5%;
}

.table {
  border: 5;
  border-color: white;
  align-content: center;
  width: 100%;
  margin: 5%;
  top: 100px;
}

.td {
  display: flex;
  margin: auto;
  align-items: left;
  justify-content: left;
}

.booknow-sign {
  background-image: url(../Images/booknow-sign.png);
  width: 30%;
  margin: auto;
  justify-content: right;
  top: 1000;
  right: 1500;
}

.logo-header {
  width: 50%;
  margin: 2%;
}

h1,
h2,
h3 {
  color: rgb(251, 250, 250);
  display: flex;
  justify-content: center;
  text-align: center;
}

h1 {
  color: rgb(251, 250, 250);
  position: relative;
  top: 25px;
  justify-content: center;
  text-align: center;
}

h2 {
  color: rgb(251, 250, 250);
  position: relative;
  justify-content: center;
  text-align: center;
}

h3 {
  color: rgb(251, 250, 250);
  position: relative;
  top: 1px;
  justify-content: center;
  text-align: center;
}

h4 {
  color: rgb(251, 250, 250);
  position: relative;
  top: 2px;
  justify-content: center;
  text-align: center;
  font-size: 36px;
}

h5 {
  color: rgb(251, 250, 250);
  position: relative;
  top: 1px;
  justify-content: center;
  text-align: center;
  font-size: 36px;
}

.main-content {
  max-width: 100%;
}

p {
  color: rgb(253, 253, 253);
  text-align: center;
  margin: 20px;
  font-size: 32px;
}

.form-row {
  display: flex;
  justify-content: left;
  margin: 10px 0;
  position: relative;
}

input,
textarea {
  width: 40%;
  padding: 12px 20px;
}

[type="submit"] {
  background-color: rgb(32, 94, 92);
  color: white;
  font-weight: bold;
  border: none;
  box-shadow: 3px 3px 0px rgba(255, 255, 255, 5);
  box-sizing: content-box;
  font-size: 1rem;
}

[type="submit"]:hover {
  background-color: black;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin: 20px auto;
  text-align: center;
}

.appform {
  display: flex;
  flex-direction: column;
  align-items: center;
}

footer {
  text-align: center;
  margin-top: 200px;
  color: rgb(241, 227, 188);
  font-size: 16px;
}
