/* Mixins */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #0f6a6a;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column;
  color: white;
}

body h1 {
  font-family: 'Proza Libre', sans-serif;
}

a {
  text-decoration: none;
  color: white;
}

.flex {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

#description {
  text-align: center;
}

.card {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.388);
  height: 400px;
  width: 500px;
  border-radius: 10px;
  box-shadow: 10px 20px 36px 11px rgba(0, 0, 0, 0.258);
  flex-direction: column;
  padding: 10px;
  margin: 20px;
  overflow: hidden;
}

.card img {
  border-radius: 50px;
}

.card h2 {
  margin: 8px 0;
}

.card p {
  font-size: 15px;
  font-weight: 100;
}

button {
  display: inline-block;
  margin: 20px 3px;
  font-family: 'Heebo', Helvetica, Arial, sans-serif;
  color: #ffffff;
  border: none;
  background: none;
  position: relative;
  text-shadow: 0px 0px 1px #BF4C28;
}

button:before {
  content: '';
  display: inline-block;
  height: 40px;
  position: absolute;
  bottom: -1px;
  left: 10px;
  right: 10px;
  z-index: -1;
  border-radius: 2em;
  filter: blur(14px) brightness(0.9);
  transform-style: preserve-3d;
  transition: all 0.3s ease-out;
}

button span {
  display: inline-block;
  padding: 0.625rem 0.938rem;
  border-radius: 50em;
  position: relative;
  z-index: 2;
  will-change: transform, filter;
  transform-style: preserve-3d;
  transition: all 0.3s ease-out;
}

button:focus {
  color: #ffffff;
}

button:hover {
  color: #ffffff;
}

button:hover span {
  filter: brightness(0.9) contrast(1.2);
  transform: scale(0.96);
}

button:hover:before {
  bottom: 3px;
  filter: blur(6px) brightness(0.8);
}

button:active span {
  filter: brightness(0.75) contrast(1.7);
}

.bg-gradient1 span,
.bg-gradient1:before {
  background: #fa7e29;
  background: linear-gradient(180deg, #fa7e29 0%, #F6682F 80%, #F6682F 100%);
}

.links {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  background-color: #333;
  border-radius: 50%;
  font-size: 30px;
  color: #666;
  transition: 0.5s;
  margin: 5px 10px;
}

.links::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #ffee10;
  transition: 0.5s;
  transform: scale(0.9);
  z-index: -1;
}

.links:hover::before {
  transform: scale(1.1);
  box-shadow: 0 0 15px #ffee10;
}

.links:hover {
  color: #ffee10;
  box-shadow: 0 0 5px #ffee10;
  text-shadow: 0 0 5px #ffee10;
}

@media only screen and (max-width: 425px) {
  .card {
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 0;
  }
}

@media only screen and (max-width: 371px) {
  button::before {
    height: 25px;
  }

  button span {
    padding: 0.25rem 0.438rem;
  }
}

/*# sourceMappingURL=style.css.map */