:root {
  --clr-peaches: #e69577;
  --clr-peach-fuzz: #ffbe98;

  --clr-pristine: #f2e8da;
  --clr-honey-peach: #dcbd9e;
  --clr-peach-puree: #efcfba;
  --clr-peach-pink: #fa9a85;
  --clr-georgia-peach: #f97272;
  --clr-peach-blossom: #de8286;
  --clr-peach-pearl: #ffb2a5;

  --clr-branded-apricot: #ca848a;
  --clr-marsala: #964f4c;
  --clr-almondine: #a78c7b;
  --clr-almond-peach: #d8c8bd;
  --clr-grapeade: #85677b;
  --clr-sauterne: #c5a253;

  --clr-pale-pansy: #b380aa;
  --clr-myristica: #846157;
  --clr-phlox: #692d5d;
  --clr-super-lemon: #e4bf45;
  --clr-sun-dried-tomato: #752329;
  --clr-jade-green: #759465;
  --clr-porcelain: #5d9ca4;

  --clr-mango-mint: #cdb127;
  --clr-party-punch: #c54966;
  --clr-grapemist: #8398ca;
  --clr-blueberry: #2c333e;
  --clr-green-banana: #babc72;
  --clr-dijon: #97754c;
  --clr-honey-yellow: #ca9456;

  --clr-pink-yarrow: #ce3375;
  --clr-aurora-pink: #e881a6;
  --clr-blazing-orange: #ffa74f;
  --clr-bermuda: #60c8b3;
  --clr-baltic: #279d9f;
  --clr-nautical-blue: #1b5091;
  --clr-little-boy-blue: #6ea1d4;

  --clr-white-ish: #fff6e8;
  --clr-brown-ish: #b3684d;
}

@font-face {
  font-family: 'TanCheri';
  src: url('/font/TanCheri.otf') format('opentype');
}

@font-face {
  font-family: 'TanMeringue';
  src: url('/font/TanMeringue.otf') format('opentype');
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  font-weight: normal;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  color: var(--clr-blueberry);
  background-color: var(--clr-pristine);
  line-height: 1.6;
  font-size: 18px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

header {
  height: 20vh;
  background-color: var(--clr-marsala);
}

main {
  flex: 1;
  padding: 1rem;
  background: url('/img/logo.png') no-repeat center center fixed var(--clr-peaches); 
  background-size: contain;
  box-shadow: 0 12px 12px -8px rgba(0,0,0,0.3) inset;
}

footer {
  height: 20vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background-color: var(--clr-marsala);
  color: var(--clr-peach-puree);
  font-family: TanCheri, serif;
  font-size: 1.5rem;
  box-shadow: 0 -7px 10px 0 rgba(0,0,0,0.2);
  a {
    color: var(--clr-peaches);
    text-decoration: none;
    svg {
      width: 2rem;
      height: 2rem;
    }
    :hover {
      color: var(--clr-peach-puree);
    }
  }
}

body.logo {
  footer, header {
    flex: 1;
    box-shadow: none;
    background-color: var(--clr-peach-fuzz);
  }
  main {
    flex: min(80vw, 100vh);
    background: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: url('/flower.webp') no-repeat center center fixed var(--clr-peaches);
    background-size: 40vw 40vw;
    color: var(--clr-white-ish);
    padding-top: 8vw;
    h1 {
      font-family: TanMeringue, serif;
      font-size: 20vw;
      padding: 0;
      margin: -7vw;
      text-shadow: 0.02em 0.02em 0.02em var(--clr-brown-ish);
    }
    p {
      font-family: TanCheri, serif;
      font-size: 4.4vw;
      padding: 0;
      margin: 0;
      text-shadow: 0.02em 0.02em 0.02em var(--clr-brown-ish);
    }
    box-shadow: none;
  }
}
