/* * {
  outline: 1px solid greenyellow;
} */

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

header {
  padding-bottom: 1rem;
  background: rgb(255, 255, 255);
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(144, 122, 108, 1) 79%,
      rgba(99, 99, 101, 1) 100%);
}

.nav-item {
  margin-right: 5rem;
}

/* Mobile View */
@media (max-width: 768px) {
  header {
    border-bottom-left-radius: 15%;
  }

  header .welcome-section {
    position: relative;
  }

  header .welcome-text {
    position: absolute;
    z-index: 1;
    top: 0;
    padding: 4rem;
    color: antiquewhite;
  }

  header .welcome-text p {
    color: black;
    text-shadow: white 0px 0px 10px;
  }
}

/* Tablet View and UP */
@media (min-width: 768px) {
  header {
    border-bottom-left-radius: 25%;
  }

  header .welcome-text {
    position: relative;
  }
}


/* section 1 */
.section-1 h2 {
  font-family: 'Crimson Text', serif;
}


/* Section 2 */

.section-2 .stat {
  /* outline: 1px solid salmon; */
  padding-top: 3.5vmin;
  margin: 1rem;
  border-radius: 0.5em;
  box-shadow: 1px 2px 10px 0px rgba(255, 0, 0, 0.349);
}

.section-2 .stat h2 {
  color: tomato;
}

/* footer */
footer {
  background-color: rgba(0, 0, 0, 0.815);
}

footer input {
  border: none !important;
}

footer input::placeholder {
  color: white !important;
}

footer i {
  padding: 1rem;
}