@charset "UTF-8";
/* Tamanhos */
/* 
- Mobile: 375px
- Desktop: 1440px
*/
/* Cores */
/* Fonte */
/* Reset CSS */
/* Box sizing */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Margem default */
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin-block-end: 0;
}

/* Removendo estilos de listas */
ul[role=list], ol[role=list] {
  list-style: none;
}

/* Padrões para body */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Elementos sem classes receberão estilos default */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Pré-configurações de imagens */
img, picture {
  max-width: 100%;
  display: block;
}

/* Estilização principal */
body {
  display: flex;
  flex-flow: wrap column;
  justify-content: center;
  align-items: center;
  background: hsl(216, 36%, 58%);
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  text-align: center;
  font-optical-sizing: auto;
}

.cartao {
  display: flex;
  flex-flow: wrap column;
  justify-content: center;
  align-items: left;
  max-width: 350px;
  min-width: 315px;
  padding: 1.5rem;
  background: hsl(216, 50%, 16%);
  color: hsl(215, 51%, 70%);
  border-radius: 1rem;
  border: none;
  text-align: left;
  box-shadow: 10px 10px 16px 0px rgba(0, 0, 0, 0.252);
}

.imagem {
  position: relative;
}
.imagem__principal {
  border-radius: 0.5rem;
}
.imagem__view {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  background-color: hsla(178, 100%, 50%, 0.5);
  z-index: 1;
  opacity: 0;
}
.imagem__icone {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.imagem__view:hover {
  opacity: 1;
  cursor: pointer;
  box-shadow: 0px 0px 26px 0px rgba(0, 255, 247, 0.6);
}

.valor-tempo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid hsl(215, 32%, 27%);
}
.valor-tempo__valor {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.valor-tempo__icone-ethereum {
  height: 1.1rem;
}
.valor-tempo__valor-ethereum {
  color: hsl(178, 100%, 50%);
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 1rem;
}
.valor-tempo__tempo {
  display: flex;
  justify-content: right;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: hsl(215, 51%, 70%);
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  font-size: 1rem;
}
.valor-tempo__icone-relogio {
  height: 1.25rem;
}
.valor-tempo__dias {
  color: hsl(215, 51%, 70%);
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  font-size: 1rem;
}

.titulo {
  color: hsl(0, 0%, 100%);
  font-size: 1.35rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.titulo:hover {
  color: hsl(178, 100%, 50%);
  transition: color 0.2s ease-in-out;
  cursor: pointer;
}

.paragrafo {
  color: hsl(215, 51%, 70%);
  font-size: 1.125rem;
  font-weight: 300;
}

.autoria {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0.25rem 0rem 0rem 0rem;
}
.autoria__avatar {
  width: 2rem;
  border: 1px solid hsl(0, 0%, 100%);
  border-radius: 2rem;
}
.autoria__texto {
  align-self: center;
  color: hsl(215, 51%, 70%);
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 16px;
}
.autoria__link {
  display: inline-block;
  color: hsl(0, 0%, 100%);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 300;
}
.autoria__link:hover {
  color: hsl(178, 100%, 50%);
  transition: color 0.2s ease-in-out;
  cursor: pointer;
}

.atribuicao {
  color: hsl(215, 51%, 70%);
  font-family: inherit;
  font-weight: 400;
  margin-top: 1rem;
}

.atribuicao a {
  color: hsl(0, 0%, 100%);
  text-decoration: none;
}

.atribuicao a:hover {
  color: hsl(178, 100%, 50%);
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

/* Media Query */
@media only screen and (max-width: 375px) {
  .cartao {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
    box-shadow: 5px 5px 8px 0px rgba(0, 0, 0, 0.252);
  }
}/*# sourceMappingURL=style.css.map */