/* 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: clamp(50px, 20vw, 200px);
}

.row2 {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 1rem;
  height: auto;
  color: #1F3F00;
  padding: clamp(4rem, 5vw, 5rem) clamp(0.5rem, 5vw, 10rem);
}

@media screen and (min-width: 768px) {
  .row2 {
    flex-direction: row;
    padding: 5% 15%;
  }
}

.row2-card {
  display: flex;
  flex-direction: column;
  text-align: left;
  width: clamp(15rem, 70vw, 30rem);
}

.row2-card p {
  font-size: 1.2rem;
  min-width: 20rem;
}

.row2-card h1 {
  font-size: 2rem;
  color: black;
}

.row2-card1 {
  display: flex;
  flex-direction: column;
  background-color: #D7D8B3;
  border: 3px solid #000;
  box-shadow: 5px 5px #000;
  padding: clamp(1rem, 5vw, 2.5rem) clamp(1rem, 5vw, 2.5rem);
  text-align: left;
}

.row2-card1 h1 {
  margin-bottom: 1rem;
  color: black;
}

.row2-card1 form {
  display: flex;
  flex-direction: column;
}

.row2-card1 input {
  border: none;
  border-radius: 10px;
  width: clamp(15rem, 70vw, 30rem);
  height: 2rem;
  padding: 2rem 2rem 2rem 1rem;
  margin-bottom: 1rem;
}

.message-input {
  border: none;
  border-radius: 10px;
  width: clamp(15rem, 70vw, 30rem);
  height: 5rem;
  padding: 2rem 2rem 2rem 1rem;
  margin-bottom: 1rem;
  overflow-wrap: break-word;
  white-space: pre-wrap;
}

.row2-button1 {
  background-color: #1F3F00;
  border: 3px solid #000;
  box-shadow: 5px 5px #000;
  color: white;
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
  width: clamp(8rem, 10vw, 11rem);
  padding: 0 1rem;
  height: 3rem;
  cursor: pointer;
}

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