body {
  font-size: 16px;
  font-family: "Roboto Mono", monospace;
  box-sizing: border-box;
  margin: 0;
}

img {
  max-width: 100%;
}

header {
  height: 6rem;
  max-width: 100vw;
  font-size: 20px;
  padding: 2rem 4rem;
  box-sizing: border-box;
}
@media screen and (max-width: 1074px) {
  header {
    padding: 1rem 2rem;
  }
}

main {
  font-size: 16px;
  padding: 2rem 4rem 5rem;
}
@media screen and (max-width: 1074px) {
  main {
    padding: 1rem 2rem 5rem;
  }
}

a {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
a:hover {
  font-weight: bold;
}
a:visited, a:active {
  color: inherit;
}

h1 {
  font-weight: normal;
  font-size: inherit;
  padding: 0;
  margin: 0;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.gap-16 {
  gap: 4rem;
}

.justify-center {
  justify-content: center;
}

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

.justify-end {
  justify-content: end;
}

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

.max-w-xs {
  max-width: 18rem;
}

.size-xs {
  width: 18rem;
  height: 18rem;
}

.max-w-sm {
  max-width: 24rem;
}

.max-h-sm {
  max-height: 24rem;
}

.max-w-5xl {
  max-width: 64rem;
}

.max-w-6xl {
  max-width: 72rem;
}

.max-w-7xl {
  max-width: 80rem;
}

.min-h-48 {
  min-height: 12rem;
}

.opacity-0 {
  opacity: 0;
}

.underline {
  text-decoration: underline;
}

.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.work-description {
  font-size: 14px;
}

.homepage-content {
  width: calc(100vw - 8rem);
  height: calc(100vh - 5rem - 2rem - 6rem);
}
@media screen and (max-width: 1074px) {
  .homepage-content {
    width: calc(100vw - 4rem);
    height: calc(100vh - 5rem - 1rem - 6rem);
  }
}

.animate-show {
  animation-name: show-mosaic;
  animation-duration: 2s;
}

@keyframes show-mosaic {
  from {
    opacity: 0;
  }
  to {
    opacity: 100;
  }
}
@media screen and (min-width: 1075px) {
  .mindesktop\:justify-end {
    justify-content: end;
  }
  .mindesktop\:max-w-1\/2 {
    max-width: 50%;
  }
  .mindesktop\:size-xs {
    width: 18rem;
    height: 18rem;
  }
  .mindesktop\:max-w-xs {
    max-width: 18rem;
  }
  .mindesktop\:h-180 {
    height: 45rem;
  }
}
@media screen and (max-width: 1074px) {
  .maxmobile\:justify-center {
    justify-content: center;
  }
  .maxmobile\:items-center {
    align-items: center;
  }
  .maxmobile\:hidden {
    display: none;
  }
}/*# sourceMappingURL=main.css.map */