body {
  font-family: Arial, sans-serif;
  background-color: #1f2121;
  color: white;
}
.container {
  display: flex;
  align-items: center;
}
.left {
  position: relative;
  height: 650px;
  width: 50%;
}
.left > img {
  position: absolute;
  bottom: -20px;
  left: -20px;
  height: 100%;
}
.right > h1 {
  font-size: 100px;
  margin: 0px;
}
.line {
  display: block;
  text-align: start;
}
.line2 {
  display: block;
  text-align: start;
}
.explore {
  margin: 28px 0px 0px 0px;
}
.explore > a > button {
  padding: 12px 20px;
  border: none;
  cursor: pointer;
}
.explore > a > button:hover {
  background: linear-gradient(
    60deg,
    rgba(255, 255, 255, 1) 34%,
    rgba(31, 33, 33, 1) 91%
  );
}
/* Samsung A32 (Mobile) */
@media (max-width: 720px) {
  body {
    font-family: Arial, sans-serif;
    background-color: #211f20;
    color: white;
  }
  .container {
    flex-direction: column;
    text-align: center;
    padding: 10px;
  }
  .left {
    height: auto;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }
  .left > img {
    position: static;
    height: 300px;
  }
  .right > h1 > span {
    font-size: 45px;
  }
  .line2 {
    display: inline;
    line-height: 1.6;
  }
  .right > p {
    text-align: start;
  }
  .explore {
    margin-top: 8vh;
  }
  .explore > a > button {
    width: 60%;
    padding: 20px;
    font-size: 16px;
    background-color: white;
  }
}
