@import url("https://fonts.googleapis.com/css2?family=Open+Sans&family=Raleway:wght@300&display=swap%27");

* {
  font-family: "Open Sans", sans-serif;
  font-family: "Raleway", sans-serif;
}

.uk-button {
  font-family: "Open Sans";
}

button {
  transition: all 1s ease-in-out;
}

button:hover {
  transform: scale(1.1);
}

.type1::after,
.type1::before {
  content: "";
  display: block;
  position: absolute;
  width: 20%;
  height: 20%;
  border: 2px solid;
  transition: all 0.6s ease;
  border-radius: 2px;
}

.type1::after {
  bottom: 0;
  right: 0;
  border-top-color: transparent;
  border-left-color: transparent;
  border-bottom-color: #00a896;
  border-right-color: #00a896;
}

.type1::before {
  top: 0;
  left: 0;
  border-bottom-color: transparent;
  border-right-color: transparent;
  border-top-color: #00a896;
  border-left-color: #00a896;
}

.type1:hover:after,
.type1:hover:before {
  width: 100%;
  height: 100%;
}

.type2 {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: #121212;
}
.type2::after {
  content: "";
  background: #00a896;
  position: absolute;
  left: 12px;
  bottom: -6px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  z-index: -1;
  transition: 0.35s cubic-bezier(0.25, 0.1, 0, 2.05);
}
.type2:hover:after {
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 100%;
}

h2 {
  text-decoration: underline;
  text-decoration-color: #00a896;
}

@media (max-width: 900px) {
  #header-img {
    width: 80%;
  }

  #header-h1 {
    margin-top: 0;
    font-size: 2vw;
  }

  #header-h3 {
    margin-top: 0;
    font-size: 1vw;
  }
}
