:root {
  --blue-500: hsl(215, 51%, 70%);
  --cyan-400: hsl(178, 100%, 50%);
  --mainbg-color: hsl(217, 54%, 11%);
  --cardbg-color: hsl(216, 50%, 16%);
  --line-color: hsl(215, 32%, 27%);
  --white-100: hsl(0, 0%, 100%);

  --light-weight: 300;
  --regular-weight: 400;
  --bold-weight: 600;
}

/* Custom Fonts */

.outfit-family {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300 400 600;
  font-style: normal;
}

* {
  margin: 0;
}

body, html{
  height: 100vh;
}

body {
  background-color: var(--mainbg-color);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Outfit', sans-serif;
  color: var(--blue-500);
}

p {
  font-size: .9rem;
}

img {
  max-inline-size: 100%;
}

.nft-card {
  max-inline-size: 15rem;
  background-color: var(--cardbg-color);
  padding: 1.25rem;
  border-radius: .7rem;
  box-shadow: 1px 0px 4rem rgba(0, 0, 0, 0.288);
}

.nft-image {
  border-radius: .5rem;
}

.nft-name {
  font-weight: var(--bold-weight);
  color: var(--white-100);
  font-size: 1.25rem;
  margin-block: .75rem;
}

.nft-description {
  font-weight: var(--light-weight);
  margin-block-end: 1.25rem;
}

.flex-apart {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-block-end: 1rem;
}

.flex-together {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
}

.nft-value {
  color: var(--cyan-400);
  font-weight: var(--bold-weight);
}

hr {
  color: var(--line-color);
  margin-block: .85rem;
}

.creator-icon {
  border: 1px solid var(--white-100);
  border-radius: 100%;
  max-inline-size: 1.65rem;
}

.nft-credits {
  margin-inline-start: .5rem;
}

.nft-credits span {
  color: var(--white-100);
}