/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  background-color: #111;
  color: #fff;
  font-family: sans-serif;
  overflow: hidden;
}

.main-container {
  position: relative;
  height: 100%;
  min-width: 100%;
  overflow-y: auto;
  z-index: 0;
}

.main-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #111;
  opacity: 0.4;
  z-index: -1;
}

#wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.center {
  /*max-width: 1020px;*/
  margin: 0 auto;
  padding: 0 10px;
  text-align: center;
}

.logo-box {
  padding: 50px 0 30px;
}

.site-title {
  font-weight: lighter;
  padding-bottom: 20px;
}

.site-content {
  position: absolute;
  top: 250px; /* kept as in original */
  width: 100%;
  color: #fff;
}

.heading {
  font-size: 45px;
  font-weight: bold;
  font-style: normal;
}

.description h3 {
  font-size: 28px;
  font-weight: 300;
  font-style: normal;
}

.bg-img {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 670px) {
  .logo-box img {
    width: 100%;
    height: auto;
    display: block;
  }
}
