* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  background: #333333;
  color: #fff;
  line-height: 1.6;
  letter-spacing: 1px;
  height: 100vh;
}

.container {
  width: 100%;
  height: 100%;
  /* Css Smooth Scroling */
  overflow-y: scroll;
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}

#register {
  position: fixed;
  text-decoration: none;
  top: 75px;
  right: 20px;
  text-transform: uppercase;
  background: purple;
  padding: 1rem;
  color: white;
  font-weight: bolder;
  letter-spacing: 2px;
}
/* #region NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  z-index: 1;
  display: flex;
  width: 100%;
  height: 60px;
  background: rgba(0, 0, 0, 0.7);
}

.navbar ul {
  display: flex;
  list-style: none;
  width: 100%;
  justify-content: center;
}

.navbar ul li {
  margin: 0 1rem;
  padding: 1rem 0.2rem;
}

.navbar ul li a {
  text-decoration: none;
  color: #aaa;
  text-transform: uppercase;
}
.navbar ul li a:hover {
  color: fuchsia;
}
/* #endregion */

/* #region SECTION */
section {
  text-align: center;
  width: 100%;
  height: 100vh;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  scroll-snap-align: center;
}

section h1 {
  font-size: 4rem;
}

section .wrapper {
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.7);
  padding: 2rem;
  /* width: 50%; */
  /* height: 50vh; */
}

section p {
  opacity: 1;
  font-size: 1.5rem;
}
section#home {
  background: url("https://images.unsplash.com/photo-1541524628935-fabc748e27db?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1598&q=80")
    no-repeat center center/cover;
}
section#contact {
  background: url("https://images.unsplash.com/photo-1501162946741-4960f990fdf4?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1500&q=80")
    no-repeat center center/cover;
}

section#contact p {
  display: grid;
  grid-template-columns: 50px 5fr;
  text-align: left;
  justify-content: left;
  margin-bottom: 1rem;
}

section#contact p > a {
  text-decoration: none;
  color: #fff;
}

.fa-facebook {
  color: #405d9b;
}

.fa-whatsapp {
  color: #03e676;
}
/* #endregion */
#tracking {
  background: #85d3f5;
  color: #333333;
  padding: 0.3rem 1rem;
}
