
/*  Home page */

.home-header {
  position: relative;
  z-index: 1;
  height: 100vh;
  overflow: hidden;
}

.home-header img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.home-header-text, .home-header-small-text{
  position: absolute;
  font-family: "vogue";
  left: 50%;
  transform: translateX(-50%) scaleY(1.5);
  bottom: 12px;         /* controls distance from image bottom */
  text-align: center;
  line-height: 1.05;
  color: white;
}

.home-header-text{
  bottom: 32px;         /* controls distance from image bottom */
}
.home-header-small-text{
  bottom: 12px;         /* controls distance from image bottom */
}

/*Modification of the website for mobile*/
@media (min-width: 850px) {
  .home-header-text {
    font-size: 35px;
  }
  .home-header-small-text {
    font-size: 25px;
  }

}
@media only screen and (max-width: 850px) {
  .home-header-text {
    font-size: 35px;
  }
  .home-header-small-text {
    font-size: 15px;
  }

}


.after-header{
  position: relative;
  width: 100vw;
  height:  15vw;
  background-color: #41ebf4;
  will-change: transform;
  z-index: 10;
}
