* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Helvetica',Arial,sans-serif;
}

html {
  /* background: #e1e1dc url('/assets/img/bg-grey.webp') no-repeat 100%; */
  background: #666;
}

:root {
  --text-color: #414042;
  /* --font-family: 'SofiaProBlack'; */
}

body {
  /* background: #e1e1dc url('/assets/img/bg-grey.jpeg') no-repeat 100%; */
  /* background: #e1e1dc url('/assets/img/bg-grey.webp') no-repeat 100%; */
  /* background-size: cover; */
  color: var(--text-color);
  font-family: var(--font-family, sans-serif);
  padding-bottom: 4rem;
  width: 100%;
  height: 100%;
  position:relative
}


img.img-fluid {
  width: 100%;
  height: auto
}

.on-center {
  display: flex;
  justify-content: center;
  align-items: center;
}



/* site */
img.logo-white {
  margin: 4rem 0 0;
  width: 240px;
  height: auto;
}
img.logo-nihilo {
  width: 100%;
  height: auto;
}

.main-text p {
  text-align: center;
  
  font-size: 1.2rem;
  line-height: 130%;
}


.hide-xs {
  display: none;
}
@media screen and (min-width: 768px) {
  .container {
    max-width: 620px;
    margin: 0 auto;
  }
  
  .btn-mobile {
    display: none;
  }

  .hide-xs {
    display: block;
  }
}



