@import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,400;0,700;1,400&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
}

body {
  font-family: "Mulish", sans-serif;
  color: #fff;
  line-height: 1.5;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #0f172a;
}

.card {
  width: calc(100% - 30px);
  max-width: 360px;
  text-align: center;
  margin: 15px;
  padding: 20px;
  border: 1px solid #222f43;
  border-radius: 20px;
  background-color: #131c31;
  color: #b9e0f2;
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.05);
}
.card i {
  font-size: 10rem;
  margin-bottom: 10px;
}
.card p {
  display: flex;
  justify-content: space-between;
  font-size: 1.6rem;
}
.card p:not(:last-child) {
  margin: 15px 0;
}
.card p#card__info {
  justify-content: center;
  font-size: 2rem;
}
.card p span {
  font-weight: 700;
}