/* 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;
  justify-content: space-around;
  height: auto;
  color: black;
  padding: 5% 5%;
}

.row2-content {
  display: flex;
  flex-direction: column;
  background-color: #D7D8B3;
  border: 3px solid #000;
  box-shadow: 5px 5px #000;
  padding: 1rem;
  gap: 1rem;
  width: 40rem;
  font-size: 1.3rem;
  text-align: left;
}

@media screen and (min-width: 1024px) {
  .row2-content {
    padding: 2rem;
  }
}