@import url('https://fonts.googleapis.com/css2?family=DM+Sans&display=swap');
body{
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
}

.header {
  display: flex;
  justify-content: space-between;
  margin: 20px 80px 20px 80px;
}

.content {
  display: flex;
  justify-content: space-between;
  margin: 70px 80px 20px 80px;
}

.text-content {
  margin-left: 30px;
  margin-top: -20px;
}

.fund-layout {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}

.button {
  align-items: center;
  background-color: white;
  border: 2px solid #111;
  border-radius: 8px;
  box-sizing: border-box;
  color: #111;
  cursor: pointer;
  display: flex;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  height: 48px;
  justify-content: center;
  line-height: 24px;
  max-width: 100%;
  padding: 0 25px;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button:after {
  background-color: #111;
  border-radius: 8px;
  content: "";
  display: block;
  height: 48px;
  left: 0;
  width: 100%;
  position: absolute;
  top: -2px;
  transform: translate(8px, 8px);
  transition: transform .2s ease-out;
  z-index: -1;
}

.button:hover:after {
  transform: translate(0, 0);
}

.button:active {
  background-color: lightgrey;
  outline: 0;
}

.button:hover {
  outline: 0;
}

.footer {
  background: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  padding: 0px 80px;
  color: lightgrey;
  position: fixed;
  bottom: 0;
}
.footer-links {
  display: flex;
  align-items: center;
  font-size: 16px;
}
.footer-links a {
  color: black;
  opacity: 0.65;
  text-decoration: none;
  font-size: 20px;
  padding: 0px 10px;
}
.footer-links a:hover {
  opacity: 1;
}
.footer .fa-heart {
  color: #D23333;
}


@media (min-width: 768px) {
  .button {
    padding: 0 40px;
  }
}
