html,
body {
  min-height: 100%;
  overflow: hidden;
} 



@media only screen and (max-width: 800px) {
    body {
        background-position: center top;
    }
}

body:before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  top: 60px;
 /* border: 10px solid #fff;*/
  z-index: 0;
  border-radius: 5px;
}

.container {
  width: 100vw;
  height: 100vh;
  display: -ms-grid;
  display: grid;
  gap: 1.5rem;
  grid-template:
    "..."
    "..."
    "..."
    "logo"
    "content"
    "..."
    "..."
    "..."
    / 1fr;
  z-index: 1;
  position: relative;
  justify-items: center;
  /* align-items: center; */
}

.container_logo {
  grid-area: logo;
  max-width: 30%;
}
.bg {
    background-image: url("img/upward-landing-page.jpg");
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    top: 0;
 }

@media only screen and (max-width: 800px) {
  .container_logo {
    max-width: 50%;
  }
}

.container_logo img {
  max-width: 100%;
}

.container_content {
  grid-area: content;
  text-align: center;
  width: 40%;
}

@media only screen and (max-width: 800px) {
  .container_content {
    width: 60%;
  }
}

.container_content img {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.container_content-txt {
  color: #fff;
  text-transform: uppercase;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.container_content-txt--alt {
  letter-spacing: 2px;
}

.container_content-icon img {
  max-width: 40px;
}
