/* Main Page styles */
.column {
	display: flex;
	flex-direction: column;
  font-family: "Oswald", Arial, sans-serif;
}

.row1 {
  background-image: linear-gradient(to bottom right, #1D3A02, #1F3F00, #3B7500);
  color: #EFF0C7;
  box-shadow: 5px 5px black;
  border-radius: 0px 0px 40% 40%;
  padding: clamp(4rem, 5vw, 5rem) clamp(5rem, 5vw, 10rem);
}

.row1 h1 {
  font-size: clamp(40px, 5vw, 60px);
  text-shadow: 5px 5px 2.5px black;
  margin-top: 18vh;
}

.row2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: auto;
  color: #1F3F00;
  padding: 3% 10%;
}

@media screen and (min-width: 768px) {
  .row2 {
    flex-direction: row;
    justify-content: space-around;
  }
}

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

.row2-content-h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 3rem;
  font-family: "Oswald", Arial, sans-serif;
  color: black;
}

.row2-card {
  display: flex;
  flex-direction: column;
  background-image: linear-gradient(to bottom right, #1D3A02, #1F3F00, #3B7500);
  border: 3px solid #000;
  color: #EFF0C7;
  padding: 2rem 4rem 4rem 2rem;
  margin-bottom: 2rem;
  text-align: left;
  box-shadow: 5px 5px #88D498;
}


@media screen and (min-width: 768px) {
  .row2-card {
    margin-bottom: 0;
  }
}

.row2-card h1 {
  font-size: 2.2rem;
  margin-bottom: 0.7rem;
}

.row2-card p {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}

.row2-card span {
  font-size: 1.2rem;
}

.row2-card button {
  background-color: #88D498;
  border: 3px solid #000;
  box-shadow: 5px 5px #000;
  color: #1F3F00;
  text-align: center;
  margin-right: 1rem;
  font-size: 1rem;
  font-weight: bold;
  padding: 1rem 2rem;
  height: 4rem;
  cursor: pointer;
}

.row2-card button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 0 #000;
  opacity: 0.7;
}