/* GLOBAL VALUES */
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  -webkit-animation: opening 1s ease-in-out;
          animation: opening 1s ease-in-out;
  font-family: "Kumbh Sans", sans-serif;
}

h1 {
  font-size: 2.5rem;
}

li,
button,
label,
input,
a,
p {
  font-size: 1.5rem;
}

h2 {
  font-size: 1.8rem;
}

h3 {
  font-size: 2.5rem;
}

h4,
h5 {
  font-size: 2rem;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

/* ANIMATIONS */
@-webkit-keyframes opening {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes opening {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

body {
  background: #19a2ae;
  overflow: hidden;
  min-height: 100vh;
}

body .top {
  position: absolute;
  right: 57%;
  bottom: 35%;
  -webkit-transform: translateX(10%);
          transform: translateX(10%);
  z-index: -999;
}

body .bottom {
  position: absolute;
  left: 55%;
  top: 50%;
  -webkit-transform: translateX(-10%);
          transform: translateX(-10%);
  z-index: -999;
}

main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  min-height: 100vh;
}

.card {
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.25);
}

.card-head .pattern {
  display: block;
}

.card-head .profile-wrapper {
  text-align: center;
}

.card-head .profile-wrapper .profile {
  position: absolute;
  border-radius: 50%;
  border: 5px #fff solid;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.card-info {
  margin-top: 8.5rem;
  text-align: center;
  line-height: 3rem;
}

.card-info h2 {
  color: #2d3248;
  font-weight: 700;
}

.card-info h2 span {
  font-weight: 400;
  margin-left: 0.4rem;
  color: #6a6f81;
}

.card-info p {
  color: #6a6f81;
  padding-bottom: 1.5rem;
}

.card-stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 2.5rem;
  text-align: center;
  margin-top: 1rem;
  border-top: 1px #f1f1f1 solid;
  line-height: 2rem;
}

.card-stats .stat h2 {
  color: #2d3248;
}

.card-stats .stat p {
  color: #6a6f81;
}

/* MEDIA QUERIES */
@media screen and (max-width: 375px) {
  body {
    position: fixed;
  }
  body .top {
    right: 65%;
  }
  body .bottom {
    left: 65%;
  }
  .card {
    margin: 2rem;
  }
}
/*# sourceMappingURL=style.css.map */