@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

:root {
    /* Font styling */
    --font-style: 'Outfit';
    --font-size: 1rem;
    --fw-light: 300;
    --fw-mid: 400;
    --fw-bold: 600;

    /* Colors */
    --clr-background-darkblue: hsl(217, 54%, 11%);
    --clr-maincard-skyblue: hsl(215, 56%, 18%);
    --clr-card-dropshadow-navyblue: hsla(214, 93%, 6%, 0.863);
    --clr-break-line-blue: hsl(215, 32%, 27%);
    --clr-ETH-icon-brightblue: hsl(178, 100%, 50%);
}
/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
    box-sizing: border-box;
  }
  
  /* 2. Remove default margin */
  * {
    margin: 0;
  }
  
  body {
    /* 3. Add accessible line-height */
    line-height: 1.5;
    /* 4. Improve text rendering */
    -webkit-font-smoothing: antialiased;
  }
  
  /* 5. Improve media defaults */
  img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
  }
  
  /* 6. Inherit fonts for form controls */
  input, button, textarea, select {
    font: inherit;
  }
  
  /* 7. Avoid text overflows */
  p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
  }
  
  /* 8. Improve line wrapping */
  p {
    text-wrap: pretty;
  }
  h1, h2, h3, h4, h5, h6 {
    text-wrap: balance;
  }
  
  /*
    9. Create a root stacking context
  */
  #root, #__next {
    isolation: isolate;
  }

html, body {
  height: 100%;
  display: grid;
  place-content: center;
  background-color: var(--clr-background-darkblue);
  color: white;
  font-size: var(--font-size);
  font-family: var(--font-style);
  font-weight: var(--fw-mid);
}
article * {
    margin: 0.5rem;
}
.NFT-card__container {
    margin: 1.5rem;
    padding: 1.2rem;
    border-radius: 1rem;
    background-color: var(--clr-maincard-skyblue);
    box-shadow: 0px 18px 4px 8px var(--clr-card-dropshadow-navyblue), 0px 40px 4px 16px hsl(216, 54%, 11%) ;
    max-width: 320px;
}
.NFT-card__main-image {
    margin: 0;
    border-radius: 1rem;
    place-self: center;
}
.NFT-card__title {
    margin-top: 1rem;
    font-weight: var(--fw-bold);
}
.NFT-card__caption {
    font-weight: var(--fw-light);
    opacity: 0.7;
}
.NFT-card__icon-flex-group {
    margin: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.NFT-card__ETH-icon-description {
  margin: 0;
  position:relative;
  left: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.NFT-card__ETH-description {
    color: var(--clr-ETH-icon-brightblue);
    font-weight: var(--fw-bold);
}
.NFT-card__Time-icon-description {
  margin: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.NFT-card__ETH-icon {
  margin: 0;
    width: 0.825rem;
    height: 1.3rem;
    justify-self: flex-start;
}
.NFT-card__Time-icon {
    opacity: 0.7;
}
.NFT-card__line-break {
    height: 0.25px;
    opacity: 0.2;
}
.NFT-card__attribution-flex-group {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.95rem;
}
.NFT-card__attribution-image {
    margin: 0.1rem;
    width: 2rem;
    height: 2rem;
    border: rgba(255, 255, 255, 0.527) solid 2px;
    border-radius: 50%;
}
.NFT-card__attribution {
    margin: 0;
    opacity: 0.7;
}
.NFT-card__attribution-name {
    margin: 0;
    color: white;
    opacity: 1;
}
@media (max-width:335px) {
  .NFT-card__attribution-flex-group {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.875rem;
}
}