* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 16px;
}

:root {
  --font-main-color: #ada6a1;
  --background-color: #aea7a3;
  --background-font-color: #ffffff;
  --accent-color: #6e8474;
  --head-color: #7a6a58;
}

@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto-Regular.ttf") format("ttf");
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: "Roboto", sans-serif;
}

.head {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.logo {
  margin-top: 5em;
}
.nav {
  display: flex;
  flex-direction: row;
}

.nav a {
  text-decoration: none;
  color: var(--font-main-color);
  font-size: 2.5em;
  margin: 0 1em 1em 1em;
}

.mainpic {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 80%;
}

.mainpic img {
  max-width: 100%;
  height: auto;
}

.description h1 {
  color: var(--head-color);
  text-align: center;
  font-size: 5em;
  letter-spacing: 0.075em;
  margin: 0.5em;
}

.description p {
  color: var(--font-main-color);
  text-align: center;
  font-size: 2.5em;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  line-height: 1.5em;
}

.description p:nth-child(3) {
  font-size: 3em;
}

.aboutabg {
  width: 60%;
  display: flex;
  flex-direction: row;
  border: 1px solid black;
  border-radius: 1em;
  margin: 1em auto;
}

.grid-container {
  display: grid;
  width: 50%;
  grid-template-areas:
    "head head"
    "map desc"
    "pic pic";
  grid-template-columns: 0.5fr 0.5fr;
  grid-template-rows: 0.25fr 1fr 0.375fr;
  border-right: 1px solid black;
  row-gap: 0.5em;
}

.grid-head {
  grid-area: head;
  color: var(--accent-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 2em auto;
}

.grid-head h2 {
  font-size: 2em;
  letter-spacing: 0.25em;
}
.grid-head h2:nth-child(2) {
  font-size: 1.75em;
}

.grid-map {
  grid-area: map;
  background-color: green;
}

.grid-desc {
  grid-area: desc;
  padding: 0 2em;
  font-size: 1.5em;
  text-align: justify;
}

.grid-desc p {
  margin-bottom: 1em;
}

.grid-pic {
  grid-area: pic;
  background-color: green;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: space-around;

  width: 50%;
  padding: 5em;
  gap: 0.5em;
}

.container picture {
  height: 35%;
  background-color: green;
}

.desc {
  background-color: var(--background-color);
  color: var(--background-font-color);
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.desc1,
.desc2 {
  padding: 1.5em;
  line-height: 1.5em;
}

ul li {
  list-style-type: none;
}

.desc1 ul li:nth-child(1) {
  font-weight: 800;
}

.btn {
  background-color: var(--accent-color);
  padding: 0.75em 5em;
  border-radius: none;
  border: none;
  color: var(--background-font-color);
  text-transform: uppercase;
  line-height: 1.5em;
  margin: 2em auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about-project {
  background-color: var(--background-color);
  color: var(--background-font-color);
  display: flex;
  padding: 2em;
  gap: 2em;
  width: 80%;
  margin: 0 auto;
}

.about-text {
  text-align: justify;
  padding: 0 5em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.75em;
}

.about-text p {
  margin-bottom: 1em;
  font-size: 1.25em;
}

.airview-container {
  width: 75%;
  background-color: green;
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2em auto;
}

.foot {
  background-color: var(--accent-color);
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--background-font-color);
  margin: 2em auto 0;
  padding: 2em;
}

.foot p {
  margin-top: 0.5em;
}

.foot a {
  text-decoration: none;
  color: var(--background-font-color);
}
