/*** IMPORT FONTS ***/
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&display=swap");
/*** VARIABLES ***/
/*** GLOBAL SETUP ***/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  /* 1rem = 10px */
}

body {
  font-family: "Outfit", sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
  color: #333;
}

/*** FONT SETUP ***/
p {
  color: #8bacda;
  font-weight: 300;
}

/*** LAYOUT ***/
.main {
  height: 100vh;
  display: grid;
  place-items: center;
  background: #0d192b;
}

/*** CARD ***/
.card {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  width: 35rem;
  padding: 2.4rem;
  background-color: #15273f5d;
  border-radius: 1.2rem;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.3);
}
.card__img {
  width: 100%;
  border-radius: 0.6rem;
}

.content__title {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 0.6rem;
}

/*** USER REPORT ***/
.report {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  font-size: 1.6rem;
  font-weight: 600;
}
.report div {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.report__price {
  color: #00fff7;
}
.report__time {
  color: #8bacda;
}

hr {
  border: 0.1rem solid #2f415b;
}

.user {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 1.6rem;
}
.user span {
  color: #fff;
}
.user img {
  width: 3.2rem;
  border-radius: 50%;
  border: 0.2rem solid #fff;
}

@media screen and (max-width: 1600px) {
  body {
    font-size: 1.6rem;
  }

  .card {
    gap: 1.6rem;
    width: 30rem;
    padding: 1.6rem;
  }

  .content__title {
    font-size: 2rem;
    margin-bottom: 0.4rem;
  }

  .report {
    font-size: 1.4rem;
  }
  .report div {
    gap: 0.6rem;
  }

  hr {
    border: 0.08rem solid #2f415b;
  }

  .user {
    gap: 1.2rem;
    font-size: 1.4rem;
  }
  .user img {
    width: 2.8rem;
  }
}
@media screen and (max-width: 800px) {
  body {
    font-size: 1.4rem;
  }

  .card {
    width: 25rem;
    padding: 1.2rem;
  }

  .content__title {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
  }

  .report {
    font-size: 1.2rem;
  }
  .report div {
    gap: 0.4rem;
  }

  hr {
    border: 0.04rem solid #2f415b;
  }

  .user {
    gap: 1rem;
    font-size: 1.2rem;
  }
  .user img {
    width: 2.4rem;
  }
}

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