.grid-container {
  display: grid;
  grid-template-columns: 1fr 0.3fr;
  grid-template-rows: 0.2fr 3fr;
  grid-template-areas:
  "header header"
  "main main";
  height: 100vh;
}

.landing-container {
  grid-area: main;
  overflow-y: auto;
  padding: 20px 20px;
  color: rgba(255,255,255,0.95);
}

.landing-Cards {
  display: grid;
  grid-template-columns: 1fr 0.3fr;
  gap: 20px;
  margin: 20px 0;
}

.landingCard {
  display: fixed;
  /* flex-direction: column; */
  justify-content: space-around;
  padding: 25px;
  border-radius: 5px;
  max-height: 85rem;
}

.inner-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.landingCard:first-child{
  background-color: darkslategray;

}

.landingCard:nth-child(2){
  background-color: darkslategray;
}

p.increase {
  font-size: 96px;
  text-align-last: justify;
}

.container {
  min-height: 35rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.req_container {
  min-height: 35rem;
  display: flex;
  justify-content:center;
  align-items:end;
  padding: 0px 0px 100px 0px;
}

.req_card {
  /* float: right; */
  text-align: right;
  width: 30rem;
}

.big_button
{
  font-size: 2.5rem;
  width: 30rem;
  height: 5rem;
}