@font-face {
  font-family: Lora;
  src: url(assets/fonts/Lora/Lora-Regular.ttf);
}
@font-face {
  font-family: OpenSans;
  src: url(assets/fonts/OpenSans/OpenSans-Regular.ttf);
}
h1 {
  color: #0E7373;
  font-family: Lora;
}

p {
  font-family: OpenSans;
}

a {
  text-decoration: none;
}

body {
  background: #D9B95B;
}

.keyword {
  color: #0E7373;
  font-weight: 600;
}

.btn-tree {
  text-decoration: none;
  font-size: large;
  font-weight: 600;
  text-align: center;
  font-family: OpenSans;
  background: #0E7373;
  color: #D9C359;
  cursor: pointer;
  padding: 5px 5px;
  border-radius: 10rem;
  width: 200px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  margin-bottom: 10px;
  transition: transform 400ms;
}
.btn-tree:hover {
  transform: scale(1.15);
}

.container-tree {
  padding-top: 10px;
  padding-bottom: 10px;
  align-items: center;
}

.container-main {
  max-width: 800px;
  background: #FFFFFF;
  margin-left: auto;
  margin-right: auto;
  margin-top: 100px;
  margin-bottom: 200px;
  padding: 10px 10px 10px 10px;
  border-radius: 10px;
}

#baseline {
  color: grey;
  font-style: italic;
}

.dash {
  display: inline-block;
  height: 3px;
  width: 20px;
  color: #0E7373;
  animation: blink 8s infinite linear;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}/*# sourceMappingURL=style_mael_2.css.map */