@import url('https://fonts.googleapis.com/css2?family=Playwrite+PE:wght@100..400&family=Space+Grotesk:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Averia+Libre:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Bebas+Neue&family=Fjalla+One&display=swap');
.hero {
    background-image: url('../images/spaces/HomePage.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    opacity: 100%

}
.about, .services, .portfolio, .testimonials, .contact {
    padding: 4rem 0;
    height:90vh;
}
.contact {
    padding-bottom: 100px;
}
footer {
    margin-top: 50px;
}
.FuturaFont{

}
.bodyClass{
  background-color: black;
}
.navbar{
  height:100px;
  width:100%;
}
.heading{
   font-family: 'Space Grotesk',sans-serif;
}

html.noscroll,body.noscroll{
    height:100%;
    overflow:hidden;
    width:100%;
}

#landingfont{
  font-family: "Fjalla One", sans-serif;
  font-size:8vh;
  /* color:white; */
  float:right;
  /* background-color: black; */
  opacity: 80%;
  width:60%;
}

.fade-out {
  animation: fadeOut ease 2s
}


@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.fade-in {
  animation: fadeIn ease 2s
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
