<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import "../components/article/index.css";
:root {
  --main-bg: hsl(0, 0%, 89%);
  --main-bg-10: hsla(0, 0%, 89%, 0.1);
  --main-bg-50: hsla(0, 0%, 89%, 0.5);
  --main-bg-90: hsla(0, 0%, 89%, 0.9);

  --main-color: hsl(230, 28%, 26%);
  --main-color-10: hsla(230, 28%, 26%, 0.1);
  --main-color-30: hsla(230, 28%, 26%, 0.3);
  --main-color-60: hsla(230, 28%, 26%, 0.6);

  --svg-color: hsl(0, 0%, 100%);

  --text-color: hsla(0, 0%, 0%, 0.7);

  --panel-bg: hsla(0, 0%, 100%, 0.1);

  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;
  font-size: 16px;

  color: var(--main-color);
  background-color: var(--main-bg);

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

* {
  box-sizing: border-box;
}

html,
body {
  display: grid;
  min-height: 100%;
  min-height: 100vh;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--main-bg);
  color: var(--main-color);
  justify-content: center;
}

a {
  display: inline-grid;
  place-content: center;
  font-weight: 600;
  color: var(--main-bg);
  text-decoration: inherit;
  background-color: var(--main-color);
  padding: 2px 3px;
  border-radius: 3px;
  line-height: 1;
}

loader {
  display: grid;
  place-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  z-index: 9999;
  background-color: var(--main-bg);
}

loader::after {
  border-right: 1px solid var(--main-color);
  border-radius: 0 50% 50% 0;
  animation: spin 1s linear forwards infinite;
}

loader::after {
  content: "";
  width: 50px;
  height: 50px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

app {
  display: grid;
  width: 900px;
  grid-template-rows: max-content auto max-content;
}

@media (max-width: 800px) {
  body {
    justify-content: unset;
  }
  app {
    width: 100%;
  }
}

header {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: 1fr 1fr;
  place-content: center;
  height: 100vh;
  display: grid;
}

.fridge {
  background-size: cover;
  background-position: -20vh;
  background-repeat: no-repeat;
  filter: drop-shadow(-0.5rem 0 1.5rem var(--main-color));
}

.title {
  writing-mode: tb-rl;
  font-size: 3rem;
  font-weight: 900;
  height: 90vh;
  text-align: center;
  display: grid;
  place-items: center;
  line-height: 0.9;
  margin: 0;
}

@media (min-width: 700px) {
  header {
    justify-content: center;
  }
  .fridge {
    background-position: calc(100% + 3rem);
    background-size: contain;
  }
}

p {
  font-size: 1.2rem;
}

footer {
  padding: 1rem 2rem 1rem 2rem;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.copyright {
  font-weight: 100;
  position: absolute;
  bottom: 1rem;
  line-height: 1;
}

.copyright a {
  display: inline-grid;
}

.master {
  background-size: 27rem;
  background-position: 33vw 40vh;
  background-repeat: no-repeat;
  filter: drop-shadow(0.5rem 0.5rem 1.5rem var(--main-color-30));
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  pointer-events: none;
}

@media (min-width: 700px) {
  .master {
    background-size: 31rem;
    background-position: 115% 26vh;
  }
}

main {
  position: relative;
  padding: 1rem 0;
}

section {
  position: sticky;
  bottom: -1px;
  padding: 1rem 2rem;
  display: grid;
  grid-template-columns: auto max-content;
  gap: 1rem;
  transition: 0.2s;
  border-top: 1px solid transparent;
}

.button {
  display: grid;
  height: 3.5rem;
  place-items: center;
  place-content: center;
  border-radius: 1rem;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--main-bg);
  text-decoration: inherit;
  background-color: var(--main-color);
  padding: 2px 3px;
  line-height: 1;
}

.icon {
  width: 3.5rem;
  height: 3.5rem;
}

.sticky {
  backdrop-filter: blur(10px);
  background-color: var(--main-bg-50);
  border-radius: 2rem 2rem 0 0;
  box-shadow: 0 -5px 20px var(--main-bg-50);
  border-top: 1px solid var(--main-bg);
  padding: 1rem;
}
</pre></body></html>