@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  background-color: hsl(217, 54%, 11%);
  color: hsl(215, 51%, 70%);
  font-family: "Outfit", sans-serif;
  font-weight: 300;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding-top: 2rem;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

button {
  margin: 2rem;
  background-color: hsl(216, 50%, 16%);
  border-radius: 1rem;
  padding: 1.5rem;
  max-width: 24rem;
  text-align: start;
  border: unset;
  color: hsl(215, 51%, 70%);
  font-family: "Outfit", sans-serif;
  cursor: pointer;
}
button:hover .img-wrap .overlay {
  display: flex;
}
button:hover h1,
button:hover strong {
  color: hsl(178, 100%, 50%);
}

.img-wrap {
  position: relative;
}
.img-wrap img {
  max-width: 100%;
  border-radius: 0.5rem;
}
.img-wrap .overlay {
  display: none;
  align-items: center;
  justify-content: center;
  background-color: hsla(178, 100%, 50%, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 99%;
  border-radius: 0.5rem;
}

h1 {
  font-size: 1.4rem;
  margin: 1rem 0;
  color: hsl(0, 0%, 100%);
  font-weight: 500;
}

p {
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 1rem 0;
}

.flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flex p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.eth {
  color: hsl(178, 100%, 50%);
  font-weight: 500;
}

.creator {
  border-top: 1px solid hsl(215, 32%, 27%);
  padding: 1rem 0 0 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.creator img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 2rem;
  border: 1px solid hsl(0, 0%, 100%);
}
.creator p {
  font-size: 1rem;
  margin: 0;
}
.creator strong {
  color: hsl(0, 0%, 100%);
  font-weight: 300;
}

footer {
  margin-top: auto;
  padding: 1rem;
}/*# sourceMappingURL=styles.css.map */