html {
  font-size: 14px;
  font-family: arial;
}

.container {
  height: 100vh;
  display: flex;
}

.left-section {
  min-width: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.left-section-content {
  max-width: 500px;
  text-align: center;
  padding: 0 20px;
}

h3 {
  font-weight: 500;
  font-size: 40px;
  margin-top: 50px;
}

h3::after {
  background: #399d2b;
  content: "";
  display: block;
  height: 4px;
  max-width: 200px;
  margin: 20px auto;
}

.desc {
  line-height: 24px;
  font-size: 1.4rem;
}

.logo {
  margin-top: 30px;
  width: 230px;
  height: auto;
}

.right-section {
  background: url("/images/corn_bg.png") center center no-repeat;
  background-size: cover;
  width: 100%;
}

@media (max-width: 800px) {
  .right-section {
    display: none;
  }

  .left-section {
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.7) 0%,
        rgba(255, 255, 255, 0.7) 100%
      ),
      url("/images/corn_bg.png") center center no-repeat;
    background-size: cover;

    min-width: unset;
    width: 100%;
  }
}
