/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css2?family=Antonio:wght@100..700&family=Figtree:ital,wght@0,300..900;1,300..900&family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=League+Spartan:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Young+Serif&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.sm-text-regular {
  font-family: "Outfit", sans-serif;
  font-size: 0.938rem;
  font-weight: 400;
  color: hsl(215, 51%, 70%);
}

.sm-text-bold {
  font-family: "Outfit", sans-serif;
  font-size: 0.938rem;
  font-weight: 600;
  color: hsl(178, 100%, 50%);
}

.medium-text-light {
  font-family: "Outfit", sans-serif;
  font-size: 1.125rem;
  font-weight: 100;
  color: hsl(215, 51%, 70%);
}

.large-text-bold {
  font-family: "Outfit", sans-serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: hsl(0, 0%, 100%);
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: hsl(217, 54%, 11%);
  font-size: 1.125rem;
}

/* Block: nft-card */
.nft-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: hsl(216, 50%, 16%);
  border-radius: 0.625rem;
  width: 327px;
  height: 543px;
}

/* Content */
.nft-card__content {
  width: 100%;
  margin-top: 1rem;
}

/* Image container */
.nft-card__image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 278px;
  margin: 0 auto;
}

.nft-card__image {
  width: 278px;
  height: 278px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  margin-bottom: 24px;
  transition: all 0.3s ease-in-out;
}

.nft-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 24px);
  background-color: rgba(0, 255, 255, 0.5);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  cursor: pointer;
}

.nft-card__icon {
  width: 48px;
  height: 48px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

/* Hover Effect */
.nft-card__image-container:hover .nft-card__image {
  filter: brightness(50%);
}

.nft-card__image-container:hover .nft-card__overlay {
  opacity: 1;
}

.nft-card__image-container:hover .nft-card__icon {
  opacity: 1;
}

/* Text content */
.nft-card__text-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 1rem;
}

.nft-card__title {
  margin-bottom: 12px;
  padding: 0 1rem;
}

.nft-card__title:hover {
  color: hsl(178, 100%, 50%);
  cursor: pointer;
}

.nft-card__description {
  padding: 0 1rem;
}

/* Details */
.nft-card__details {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 16px;
  margin-bottom: 16px;
}

.nft-card__price-container {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 1rem;
}

.nft-card__time-container {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 1rem;
}

/* Divider */
.nft-card__divider {
  color: hsl(215, 32%, 27%);
  margin-top: 16px;
  margin-bottom: 16px;
  width: 278px;
}

/* Footer */
.nft-card__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 1rem;
}

.nft-card__profile {
  width: 33px;
  height: 33px;
  border: 1px solid hsl(0, 0%, 100%);
  border-radius: 50%;
}

.nft-card__creator {
  display: flex;
  gap: 4px;
}

.nft-card__link {
  color: hsl(0, 0%, 100%);
}

.nft-card__link:hover {
  color: hsl(178, 100%, 50%);
  cursor: pointer;
}/*# sourceMappingURL=main.css.map */