body {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
}
/* heading section */
header {
  display: grid;
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  padding: 0.5rem 2rem;
  opacity: 0.85;
}

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../assets/landing_header.webp");
  background-size: cover;
  background-position: center;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: -1;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  list-style: none;
}

nav a {
  color: white;
  font-weight: bold;
  text-decoration: none;
}

header .logo {
  width: 100px;
  object-fit: contain;
}

.itensnav {
  display: flex;
  gap: 1rem;
  list-style-type: none;
  color: black;
}

li a:hover {
  color: brown;
}

li a:active {
  color: rgb(92, 229, 0);
}

#contact-item {
  margin-right: 0px;
}

li .current {
  color: aqua;
}

.container {
  display: flex;
  text-align: left;
  color: black;
  font-size: 20px;
  padding: 20px 5rem;
  border: solid 1px black;
  background: url(../../assets/contact/background_image.png) no-repeat center
    center;
  opacity: 0.8;
}

.aside {
  display: flex;
  flex-direction: column;
  color: #ba6e4e;
  padding: 20px;
}

.content {
  display: flex;
  flex-direction: column;
  min-width: 50%;
  padding: 20px;
  text-align: center;
}

.content h2 {
  margin-bottom: 20px;
  color: #ba6e4e;
  font-size: 30px;
}

.content label {
  display: block;
  margin-bottom: 5px;
  font-size: 18px;
}

.content input[type="text"],
.content input[type="email"],
.content textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid #ba6e4e;
  border-radius: 5px;
  font-size: 15px;
}

.content select {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ba6e4e;
  border-radius: 5px;
  font-size: 15px;
  background-color: rgba(255, 255, 255, 0.5);
}

.content input[type="submit"] {
  background-color: #ba6e4e;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 15px;
}

.footer {
  background-color: #ba6e4e;
  color: #fff;
  padding: 10px;
}
