@font-face {
  font-family: "Baloo2";
  src: url("/fonts/Baloo_2/Baloo2-VariableFont_wght.ttf")
    format("truetype");
}

body {
  font-family: "Baloo2", sans-serif;
  background-color: var(--fhu-white);
  color: var(--fhu-dark-blue);
}

.content-width {
  width: 1300px;
  max-width: 100%;
}

a {
  color: var(--fhu-purple);
}

a:hover {
  text-decoration: underline;
}

a:focus {
  outline: none;
}

button:focus {
  outline: none;
}

h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0px;
  font-family: "Baloo2";
}

h2 {
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 20px;
  margin-top: 10px;
  text-align: center;
  font-family: "Baloo2";
  text-transform: uppercase;
}

h3 {
  font-size: 1.6rem;
}

h4 {
  font-size: 1.4rem;
}

hr {
  border-bottom: 1px solid var(--fhu-white);
  margin: 10px 0;
}

.card {
  border-radius: 30px;
  margin: 20px 0;
}

.link-button {
  background-color: var(--fhu-purple);
  color: var(--fhu-white);
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: bold;
  display: inline-block;
  outline: none;

  transition: filter 0.25s ease;

  position: relative;
  overflow: hidden;
}

.ripple {
  position: relative;
  overflow: hidden;
}

.link-button.outline {
  border: 2px solid var(--fhu-white);
}

.link-button.outline.inverse {
  background-color: transparent;
  color: var(--fhu-purple);
  border-color: var(--fhu-purple);
}

.link-button:hover {
  text-decoration: none;
  filter: brightness(120%);
}

.link-button.invert-color {
  background-color: var(--fhu-white);
  color: var(--fhu-purple);
}

.link-button.invert-color:hover {
  background-color: rgba(255, 255, 255, 0.842);
}

.link-button.slim {
  padding: 10px 30px;
  background-color: var(--fhu-white) !important;
}

.ripple-effect {
  position: absolute;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Tablet view */
@media (max-width: 1174px) {
  body {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 2.8rem;
  }

  h3 {
    font-size: 2.4rem;
  }

  h4 {
    font-size: 2rem;
  }

  .link-button {
    font-size: 1.4rem;
  }

  .card {
    margin: 50px 0 0;
  }
}
