/* prompt to compile sass:

sass --watch styles.scss:styles.css

*/
@import url("https://fonts.googleapis.com/css2?family=Zilla+Slab:wght@400;600&display=swap");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
@font-face {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
}
.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px; /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
}

body {
  padding: 0 2rem;
  margin: 0;
  font-size: 16px;
  font-family: "Zilla Slab", serif;
  color: DarkSlateGray;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vH;
  background: linear-gradient(-45deg, DarkTurquoise 25%, PaleTurquoise 25%, PaleTurquoise 75%, #ffb900 75%);
  background-position: 50% 50%;
  background-size: 120%;
  background-repeat: no-repeat;
  outline-offset: -1rem;
}
body * {
  box-sizing: border-box;
}
body p {
  font-size: 2rem;
  max-width: 35em;
  margin: 0;
}
@media (width <= 36rem) {
  body p {
    font-size: 1.5rem;
  }
}
body #back,
body #contact {
  background: darkslategray;
  color: paleturquoise;
}
body #back {
  position: fixed;
  top: 0;
  left: 0;
  width: 4rem;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  z-index: 10;
}
body #back .material-icons {
  font-size: 2rem;
}
body #back:focus {
  color: white;
  outline: 2px solid white;
  outline-offset: 2px;
}
body #contact {
  display: flex;
  flex-direction: row;
  padding: 0.5rem 1rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
body #contact .material-icons {
  font-size: 1em;
}
body#home {
  color: DarkSlateGray;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  animation: cliclac 1s 1;
  outline: 1rem solid PaleTurquoise;
}
@keyframes cliclac {
  0% {
    background-size: 400%;
  }
  80% {
    background-size: 120%;
  }
  85% {
    background-size: 100%;
  }
  100% {
    background-size: 110%;
  }
}
body h1 {
  font-size: 4rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
body .links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}
body .links a {
  font-size: 3rem;
  padding: 1rem 2rem;
  background: white;
  border: 0.25rem solid DarkTurquoise;
  text-decoration: none;
  box-shadow: 0.5rem 0.5rem 0 0 DarkTurquoise;
  color: inherit;
  width: 100%;
  text-align: center;
}
body .links a:not(.coming-soon):hover, body .links a:not(.coming-soon):focus, body .links a:not(.coming-soon):active {
  border-color: DarkSlateGray;
  background: DarkSlateGray;
  color: #ffb900;
  outline: 0;
}
body .links a:not(.coming-soon):active {
  color: white;
  border-color: white;
  outline: 1rem solid DarkTurquoise;
}
body .links a.coming-soon:hover {
  cursor: default;
  position: relative;
}
body .links a.coming-soon:hover:after {
  content: "coming soon";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: white;
  padding: 1rem 2rem;
  box-sizing: border-box;
}
@media (width <= 36rem) {
  body#home {
    justify-content: flex-start;
  }
  body h1 {
    font-size: 3rem;
  }
  body .links {
    gap: 1rem;
    width: 90%;
    flex-grow: 1;
  }
  body .links a {
    font-size: 2rem;
  }
}
body#design .bio, body#drawings .bio {
  display: flex;
  gap: 2rem;
  align-items: center;
}
body#design .bio figure, body#drawings .bio figure {
  position: relative;
}
body#design .bio figure figcaption, body#drawings .bio figure figcaption {
  position: absolute;
  transform: rotate(270deg);
  top: 85%;
  right: -0.75rem;
}
body#design .bio img, body#drawings .bio img {
  width: 20rem;
  height: 20rem;
  flex-grow: 0;
  flex-shrink: 1;
  border: 0.25rem solid DarkSlateGray;
  box-shadow: 0.5rem 0.5rem 0 0 DarkTurquoise;
}
body#design .bio a, body#drawings .bio a {
  color: inherit;
  position: relative;
  text-decoration: none;
  transition: color 100ms ease-in;
  white-space: nowrap;
}
body#design .bio a:before, body#drawings .bio a:before {
  content: "";
  background: DarkSlateGray;
  height: 100%;
  width: 0;
  position: absolute;
  left: 50%;
  border-radius: 0.25rem;
  z-index: -1;
  transition: all 200ms ease-in-out;
}
body#design .bio a:hover, body#design .bio a:focus, body#drawings .bio a:hover, body#drawings .bio a:focus {
  color: PaleTurquoise;
  outline: none;
}
body#design .bio a:hover:before, body#design .bio a:focus:before, body#drawings .bio a:hover:before, body#drawings .bio a:focus:before {
  width: calc(100% + 0.5rem);
  left: -0.25rem;
}
body#design .bio {
  flex-direction: row;
}
@media (max-width: 800px) {
  body#design .bio {
    flex-direction: column;
  }
}
body#drawings .bio {
  flex-direction: column;
}
@media (width <= 36rem) {
  body#ceramics {
    height: auto;
  }
}
body .gallery {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: start;
  justify-items: flex-start;
  gap: 2rem;
}
body .gallery .card {
  position: relative;
  height: 20rem;
  background-size: cover;
  aspect-ratio: 1/1;
}
body .gallery .card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
body .gallery .card .desc {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(rgba(47, 79, 79, 0) 0%, rgb(47, 79, 79) 100%);
  width: 100%;
  height: 100%;
  flex-direction: column;
  padding: 1rem;
  color: white;
}
body .gallery .card:hover .desc, body .gallery .card:focus .desc {
  display: flex;
  display: flex;
  align-content: flex-start;
  justify-content: flex-end;
  align-items: flex-start;
}
@media (max-width: 800px) {
  body {
    padding: 1rem;
    outline: none;
  }
  body#home {
    outline: none;
  }
  body#design {
    align-items: flex-start;
  }
  body#design .bio {
    flex-direction: column;
    align-items: flex-end;
  }
  body#design .bio img {
    width: auto;
    height: auto;
    max-width: 100%;
  }
}

/*# sourceMappingURL=styles.css.map */
