* {
  padding: 0;
  margin: 0;
  font-family: 'Raleway', sans-serif;
}

body {
  background-image: linear-gradient(
    to right,
    rgb(62, 62, 62),
    rgb(130, 130, 130)
  );
}

/* Navbar & Footer*/
nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px 0px;
  background-color: #222121;
  z-index: 10000;
}

nav > ul {
  display: flex;
  list-style: none;
  /* Set Gap for responsive Website */
  gap: 80px;
  justify-content: space-between;
}

nav > .appLogo > h1 {
  color: white;
  font-size: 25px;
}

nav > ul > li > a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-weight: bold;
}

nav > ul > li > a:hover {
  color: green;
}

/* Hamburger set to disappear */
.containerHamb {
  display: none;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25em;
  padding: 30px;
  background-color: #222121;
}

footer > p {
  font-size: 15px;
  color: white;
}

/* Hero Element */
.heroElement {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 500px;
  width: 100%;
  z-index: -22;
}

.heroElement > .image {
  position: absolute;
  height: 100%;
  width: 100%;
}

.image > img {
  object-fit: cover;
  max-height: 600px;
  height: 100%;
  width: 100%;
  opacity: 0.8;
}

/* hero text */
.innerElement {
  text-align: center;
  background-color: rgb(107, 107, 107, 0.4);
  padding: 20px;
  border-radius: 5px;
  z-index: 1;
}

.innerElement > h1 {
  color: #2d2a2a;
  font-size: 80px;
}

.innerElement > p {
  font-size: 30px;
}

/* Main Content */
.contentOne {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 80px;
  margin: 20px;
}

.fontContent {
  font-size: 25px;
  padding-bottom: 20px;
  color: rgb(191, 180, 180);
}

.textContent {
  font-size: 18px;
  padding-bottom: 5px;
  color: rgb(207, 201, 201);
}

.contentOne > div > p > a {
  font-size: 18px;
  color: rgb(207, 201, 201);
  text-decoration: underline;
}

/* Responsive */
@media screen and (max-width: 768px) {
  nav > ul {
    gap: 60px;
  }

  .innerElement > h1 {
    color: #2d2a2a;
    font-size: 60px;
  }

  .innerElement > p {
    font-size: 25px;
  }

  .contentOne {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    justify-items: left;
    margin: 0 auto; /* Center the grid horizontally */
    max-width: 1200px; /* Optional: Set a max-width to limit the content width */
  }

  .containerOne {
    padding-bottom: 45px;
  }

  footer > p {
    text-align: center;
  }
}

@media screen and (max-width: 576px) {
  nav > ul {
    position: absolute;
    gap: 25px;
  }

  .innerElement > h1 {
    color: #2d2a2a;
    font-size: 50px;
  }

  .innerElement > p {
    font-size: 20px;
  }

  /* hamburger */
  #hamburgerButton {
    border: none;
    cursor: pointer;
    background: none;
    font-size: 25px;
    color: white;
  }

  .containerHamb {
    display: flex;
  }

  .task {
    display: none;
  }

  .task.active {
    cursor: pointer;
    display: flex;
    height: 25vh;
    width: 100%;
    top: 65px;
    justify-content: space-evenly;
    flex-direction: column;
    align-items: center;
    background-color: rgb(46, 45, 45, 0.7);
    z-index: -1;
  }

  footer > p {
    text-align: center;
  }
}
