*{
  padding: 0px;
  margin: 0px;
  overflow: hidden;
}

.container{
  position: relative;
  height: 100vh;
  width: 100%;
}

.hero{
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #FF8A00;
  z-index: 0;
  position: absolute;
}

.Background-img{
  height: 100vh !important;
  opacity: 0.1;
}

.intro{
  display: flex;
  position: absolute;
  color:aliceblue;
  z-index: 10;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  flex-direction: column;
  justify-content: center;
  margin: auto;
  height: auto;
  width: auto;
  text-align: center;
  /* background-color: #1b1b1b; */
}

.intro > h1{
  font-family: 'Pacifico', cursive;
  font-size: 3.2em;
  line-height: 1.5em;
  letter-spacing: 5px;
  
}

.intro > h3{
  font-family: 'Nunito', sans-serif;
  font-size: 20px;
  padding-bottom: 50px;
  letter-spacing: 2px;
  margin: 0px;
}

.intro a{
  text-decoration: none;
  color: #000000;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  padding: 10px 40px;
  font-weight: bold;
  margin: 0 auto;
  border-radius: 50vh;
  background-color: aliceblue;
  transition: all ease 300ms;
}

.intro a:hover{
  border-radius: 5px;
  padding: 10px 50px;
  background-color: #1b1b1b;
  color: aliceblue;
}
