*,
*:before,
*:after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  /* Body Text */
  --blue-500: #8bacd9;

  --cyan-400: #00fff8;

  /* Main BG */
  --blue-950: #0d192c;
  /* Card BG */
  --blue-900: #15263f;
  /* Line */
  --blue-800: #2e405a;

  --white: #ffffff;
  --black: #000000;
}

body {
  font-family: "Outfit", Arial, Helvetica, sans-serif;
  background-color: var(--blue-950);
}

h2 {
  font-size: 22px;
  color: var(--white);
  line-height: 1.25em;
  font-weight: 600;
}

p {
  font-size: 18px;
  color: var(--blue-500);
  line-height: 1.45em;
  font-weight: 300;
}

/* FONTS */
/* outfit-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Outfit";
  font-style: normal;
  font-weight: 300;
  src: url("../assets/fonts/outfit-v14-latin-300.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* outfit-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Outfit";
  font-style: normal;
  font-weight: 600;
  src: url("../assets/fonts/outfit-v14-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* NFT Card */
#nft-card {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0.75rem;

  .card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem;
    background-color: var(--blue-900);
    box-shadow: 0px 25px 50px rgba(0, 0, 0, 0.0952917);
    border-radius: 15px;
    max-width: 350px;
  }

  .card__image-container {
    height: 302px;
    width: 302px;
    margin-bottom: 1.5rem;
    position: relative;
    cursor: pointer;

    &:hover {
      .card__image-overlay,
      .card__image-overlay__image {
        display: flex;
      }
    }
  }

  .card__image {
    border-radius: 0.5rem;
  }

  .card__image-overlay {
    border-radius: 0.5rem;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--cyan-400);
    opacity: 0.5;
    display: none;
  }

  .card__image-overlay__image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    display: none;
  }

  .card__title {
    margin-bottom: 1rem;
    cursor: pointer;
    &:hover {
      color: var(--cyan-400);
    }
  }

  .card__text {
    margin-bottom: 1.5rem;
  }

  .data-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    font-size: 16px;
    line-height: 1.25em;
  }

  .data__price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--cyan-400);

    font-weight: 600;
  }

  .data__deadline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--blue-500);

    font-weight: 400;
  }

  .card__divider {
    width: 100%;
    height: 1px;
    background: var(--blue-800);
    margin-bottom: 1.5rem;
  }

  .card__creator {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .card__creator__image {
    height: 33px;
    width: 33px;
    border: 1px solid var(--white);
    border-radius: 99px;
  }

  .card__creator__text {
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.25em;
  }

  .card__creator__name {
    color: var(--white);
    cursor: pointer;
    &:hover {
      color: var(--cyan-400);
    }
  }
}
