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

main {
  max-width: 100dvw;
  min-height: 100dvh;
}

h1 {
  font-size: 1.35rem;
}

.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.flex-row {
  flex-direction: row;
}
.flex-gap-0 {
  gap: 0.5rem;
}
.flex-gap-1 {
  gap: 1rem;
}
.flex-gap-2 {
  gap: 1.5rem;
}

.justify-center {
  justify-content: center;
}
.justify-sb {
  justify-content: space-between;
}

.align-center {
  align-items: center;
}

.font-outfit {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
}

.fs-1 {
  font-size: clamp(0.875rem, 0.6667rem + 0.8889vw, 1rem);
}
.fs-2 {
  font-size: clamp(1rem, 0.7917rem + 0.8889vw, 1.125rem);
}

.fw-300 {
  font-weight: 300;
}
.fw-400 {
  font-weight: 400;
}
.fw-600 {
  font-weight: 600;
}

.clr-white {
  color: hsl(0, 0%, 100%);
}
.clr-cyan {
  color: hsl(178, 100%, 50%);
}
.clr-blue {
  color: hsl(215, 51%, 70%);
}

.clr-hover-cyan:hover, .clr-hover-cyan:focus, .clr-hover-cyan:active {
  cursor: pointer;
  color: hsl(178, 100%, 50%);
}

.padding-1 {
  padding: 1rem;
}
.padding-2 {
  padding: 1.5rem;
}
.padding-bs-1 {
  padding-block-start: 1rem;
}

.bg-blue-950 {
  background-color: hsl(217, 54%, 11%);
}
.bg-blue-900 {
  background-color: hsl(216, 50%, 16%);
}

.border {
  border: thin solid white;
}
.border-top {
  border-top: thin solid hsl(215, 32%, 27%);
}
.border-radius-1 {
  border-radius: 1rem;
}
.border-radius-2 {
  border-radius: 0.5rem;
}
.border-circle {
  border-radius: 100%;
}

.card {
  width: min(22rem, 85vw);
}

.box {
  position: relative;
}
.box__img {
  width: 100%;
  vertical-align: middle;
}
.box__hover {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  background-image: url(../images/icon-view.svg);
  background-repeat: no-repeat;
  background-position: 50%;
  background-color: hsla(178, 100%, 50%, 0.4);
  opacity: 0;
}
.box__hover:hover, .box__hover:focus, .box__hover:active {
  opacity: 1;
}

.creator {
  width: 100%;
}
.creator__img {
  width: 2rem;
}/*# sourceMappingURL=style.css.map */