
body, html {
  height: 100%;
  margin: 25px;
  font-family: "Lavishly Yours", Arial, Helvetica, sans-serif;
}

.hero-image {
  background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url("tree.jpg");
  height: 70%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.hero-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgb(0, 0, 0);
}

.hero-text button {
  border: none;
  outline: 0;
  display: inline-block;
  padding: 25px 50px;
  color: rgb(255, 255, 255);
  background-color: #67ae90;
  text-align: center;
  cursor: pointer;
  font-size: 20px;
}

.hero-text button:hover {
  background-color: #9c7aa5;
  color: white;
}

p{
    margin: 10px 10px 10px 10px;
}


h1{
    column-span: all;
    font-family: "Lavishly Yours";
    text-align: left;
    font-size: 5vw;
}

* {
  box-sizing: border-box;
}

.flex-container {
  display: flex;
  flex-direction: row;
}

.flex-item {
  background-color: #e4ede5;
  padding: 10px;
  font-size: 20px;
  text-align: center;
  width: 100%;
  font-family: 'Baskervile Old Face', Times, serif;
}

/* On screens that are 600px wide or less, make the columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
  .flex-container {
    flex-direction: column;
  }
}

footer {
    padding: 10px;
    font-size: 25px;
}

a{
    color: #9c7aa5;
}