* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lato", sans-serif;
  color: #fff;
}

.container {
  height: 100vh;
  background-image: linear-gradient(
      to right bottom,
      rgba(126, 213, 111, 0.8),
      rgba(40, 180, 133, 0.8)
    ),
    url(office.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
}

.sub-container {
  width: 900px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.imgbox {
  background: #fff;
  display: inline-block;
  height: 100px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.logo {
  height: 95%;
}

.head-title {
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.2;
  font-size: 40px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.tag-title {
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.2;
  font-size: 26px;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

.text {
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.75px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
}


@media only screen and (max-width: 900px) {
  .imgbox {
    height: 150px;
  }

  .sub-container {
    width: 600px;
  }

  .head-title {
    font-size: 38px;
    font-weight: 700;
  }

  .tag-title {
    font-size: 32px;
  }

  .text {
    font-size: 28px;
  }
}

@media only screen and (max-width: 600px) {
  .imgbox {
    height: 100px;
    margin-bottom: 10px;
  }

  .sub-container {
    width: 300px;
  }

  .head-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .tag-title {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .text {
    font-size: 18px;
  }
}
