body {
  height: 100vh;
  width: 100vw;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: #fff;
  font-family: 'Varela Round', sans-serif;
}

.container {
  width: 100%;
  height: 100%;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.container::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ecf5fa;
  opacity: 0.7;
}

/* Desktop background image */

.text-cont {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%;
  width: 350px;
  height: auto;
  margin-bottom: 40px;
}

h1 {
  margin-top: 0;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #969696;
  font-weight: 600;
  font-size: 27px;
}

p {
  color: #aaaaaa;
  margin: 0;
  font-size: 20px;
}

@media screen and (max-width: 576px) {
  .container {
    background-image: url('../../assets/images/flot-hero-mob.webp');
  }
  img {
    width: 220px;
  }
  h1 {
    font-size: 22px;
  }
  p {
    font-size: 15px;
  }
}
@media screen and (min-width: 577px) {
  .container {
    background-image: url('../../assets/images/flot-hero-desk.webp');
  }
}
