@font-face {
  font-family: "Morion-Bold";
  src: url("../resources/fonts/Morion-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Morion-Light";
  src: url("../resources/fonts/Morion-Light.ttf") format("truetype");
}
@font-face {
  font-family: "Inconsolata";
  src: url("../resources/fonts/Inconsolata-Variable.ttf") format("truetype");
}
* {
  box-sizing: border-box;
}

body {
  background: #11294d;
  background: radial-gradient(circle, rgb(17, 41, 77) 0%, rgb(10, 21, 35) 68%, rgb(6, 13, 20) 100%);
  margin: 0;
  padding: 0;
  font-family: "Inconsolata", sans-serif;
  font-weight: 100;
  color: #f1f0de;
  font-kerning: normal;
}

header, footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

main {
  min-height: calc(100vh - 230px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
}

.container {
  height: 100%;
  width: 100%;
  max-width: 1400px;
  padding: 0 20px;
}

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

.flex-spread {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}

.glow {
  transition: filter 2s ease;
  filter: drop-shadow(0 0 20px hsla(34, 67%, 68%, 0.2));
}
.glow:hover {
  filter: drop-shadow(0 0 50px hsla(34, 67%, 68%, 0.8));
}

header {
  top: 0;
  text-align: center;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 20px;
  padding: 10px 30px;
}
header hr {
  width: 100%;
  border: 1px solid hsl(216, 44%, 15%);
}
header #logo {
  height: 100%;
}

footer {
  background: radial-gradient(ellipse at top, rgba(6.885, 7.395, 8.415, 0.5), rgb(6.885, 7.395, 8.415));
  text-align: center;
  height: 150px;
  padding: 10px 30px;
}
footer #working-miracles {
  font-family: "Morion-Bold", serif;
  letter-spacing: 0;
  font-size: 20px;
  text-align: center;
}
footer #working-miracles > * {
  margin: 0;
  padding: 0;
}
footer #working-miracles img {
  height: 60px;
}
footer #contact-info {
  text-align: right;
  font-family: "Inconsolata", monospace;
  font-size: 14px;
  line-height: 0.5em;
}
footer #contact-info .email {
  font-weight: 300;
}

#motd {
  transition: filter 1s ease;
  display: flex;
}
@media screen and (min-width: 600px) {
  #motd br {
    display: none;
  }
}
#motd:hover {
  filter: blur(10px) saturate(2);
}
#motd h1 {
  font-weight: 200;
  font-size: 25px;
  text-align: center;
  color: #253c5e;
  letter-spacing: 2px;
}
#motd h1 #crafting-light {
  color: #314f7b;
}

.gallery {
  display: grid;
  gap: 20px;
  margin: 30px 0;
}
.gallery .item {
  position: relative;
  height: 200px;
  width: 100%;
}
@media screen and (min-width: 600px) {
  .gallery .item {
    height: 220px;
  }
}
.gallery .item > div {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 20px;
  background: hsl(220, 10%, 3%);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center center;
  transition: opacity 350ms ease, transform 250ms ease, box-shadow 250ms ease, background-size 700ms ease;
}
.gallery .item > div.main {
  z-index: 5;
  box-shadow: 0 5px 15px rgba(6.885, 7.395, 8.415, 0.5);
}
.gallery .item > div.main .content {
  background: radial-gradient(ellipse at bottom left, #060d14 0%, rgba(6, 13, 20, 0) 50%);
  border-radius: inherit;
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: end;
}
.gallery .item > div.main .content > * {
  padding: 0;
  margin: 0;
  filter: drop-shadow(0 0 2px hsla(34, 67%, 68%, 0.516));
  transition: transform 250ms ease, filter 1s ease;
}
.gallery .item > div.main .content h2 {
  font-family: "Morion-Bold", "serif";
}
.gallery .item > div.copy1 {
  z-index: 2;
  filter: blur(4px) brightness(1.5);
  opacity: 0.3;
}
.gallery .item > div.copy2 {
  z-index: 1;
  filter: blur(25px) saturate(2) brightness(1.5);
  opacity: 0.3;
}
.gallery .item:hover > div {
  transform: translateY(-3px);
  background-size: 101% auto;
}
.gallery .item:hover > div.main {
  box-shadow: 0 10px 25px rgba(6.885, 7.395, 8.415, 0.8);
}
.gallery .item:hover > div.copy1 {
  opacity: 0.4;
}
.gallery .item:hover > div.copy2 {
  opacity: 0.4;
}
.gallery .item:hover > div .content * {
  transform: translateY(3px);
  filter: drop-shadow(0 0 5px hsl(34, 67%, 68%));
}
.gallery .item.arunas-magic > div {
  background-image: url("thumbnails/arunas-magic.webp");
  background-position: center 30%;
}
.gallery .item.mussum > div {
  background-image: url("thumbnails/mussum.jpg");
  background-position: center 30%;
}
.gallery .item.espirito-do-natal > div {
  background-image: url("thumbnails/espirito-do-natal.webp");
  background-position: center 50%;
}

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