:root {
  --main-color: #3B9702;
  --hover-color: #2d7301;
  --text-color: #4B4B4B;
}

* {
  margin: 0;
  padding: 0;
}

html {
  font-family: Open Sans, sans-serif;
  color: var(--text-color);
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}

.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  flex: 1;
  gap: 40px;
}

.footer {
  width: 100%;
  height: 80px;
  background-color: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-text {
  font-weight: 700;
  font-size: 24px;
  color: white;
}

.column {
  display: flex;
  flex-direction: column;
}

.left-col {
  justify-content: space-between;
  max-width: 800px;
  gap: 20px;
  width: 100%;
  align-items: center;
}

.right-col {
  gap: 50px;
  font-size: 0.9rem;
  max-width: 950px;
}

.right-col p {
  line-height: 1.5;
}

.wrapper {
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.title {
  font-weight: 700;
  font-size: 28px;
  color: var(--main-color);
}

.section-title {
  font-weight: 700;
  font-size: 18px;
  text-align: center;
}

.hero-img {
  display: none;
  max-inline-size: 100%;
}

.info-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.proxy-info {
  display: flex;
  flex-direction: column;
}

.link-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  color: white;
  background-color: var(--main-color);
  font-size: 18px;
  border-radius: 10px;
  max-width: 190px;
  width: 100%;
  align-self: center;
  text-decoration: none;
}

.link-btn:hover {
  color: white;
  background-color: green;
  transition: background-color 0.3s;
}

@media (min-width: 1600px) {
  .right-col {
    gap: 100px;
  }

  .right-col {
    font-size: 1.1rem;
  }
}

@media (min-width: 1280px) {
  .main {
    flex-direction: row;
    align-items: initial;
    padding: 4.5rem 2rem 0 2rem;
  }

  .hero-img {
    display: block;
  }

  .left-col {
    align-items: initial;
    gap: 80px;
  }

  .title {
    font-size: 38px;
  }

  .footer-text {
    font-size: 38px;
  }

  .section-title {
    font-size: 26px;
  }
}

a {
  color: var(--main-color);
  transition: color, 0.3s;
}

a:hover {
  color: var(--hover-color);
}
