:root {
  --cA: #00B7FF;
  --cB: white;
  --cC: #c8b2db;
  --font: 'Recursive Sans Casual';
  --something: 'cool';
}

body, html {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  height: 100%;
}

body {
  background: linear-gradient(var(--cA), var(--cC));
  color: var(--cB);
  font-family: var(--font), monospace;
}

ul, h1, h2, h3, p {
  margin: 0;
  padding: 0;
}


main {
  max-width: 700px;
  margin: auto;
  display: flex;
  flex-flow: column;
  align-items: center;
  padding-top: 3rem;
}

section#feeling {
  width: 100%;
  font-size: 2.5rem;
  hyphens: auto;
}

section#thoughts-about-the-weather {
  width: 400px;
  font-size: 0.9rem;
  text-align: center;
  margin-top: 0.25rem;
}

section#moon {
  margin: 4rem auto 4rem auto;
}
section#moon svg{
  transform: rotate(85deg);
}
/* section#moon svg.waxing { */
/*   transform: rotate(220deg); */
/* } */

section#moon p {
  text-align: center;
  font-style: italic;
  font-size: 1rem;
  font-weight: 400;
  margin: 0.5rem auto 0.5rem auto;
}


section#sunrise-sunset {
  display: flex;
  font-family: 'Recursive Mono Casual';
  font-weight: 600;
  font-size: 1.25rem;
  width: 400px;
  justify-content: space-between;
  align-items: center;
}


svg#sunrise {
  fill: orange;
  stroke: orange;
  width: 2rem;
  margin-right: 0.5rem;
}

svg#sunset {
  fill: cornflowerblue;
  stroke: cornflowerblue;
  margin-right: 0.5rem;
}

section#moon p {
  color: var(--cD);
}

p#temp {
  font-size: 1.5rem;
}

a#entrance {
  font-family: 'Recursive Mono Casual';
  font-size: 1.75rem;
  font-weight: 400;
}

a {
  text-decoration: none;
  color: cornflowerblue;
  font-weight: 200;
  padding: 0.5rem;
  color: aliceblue;
  background: var(--cA);
  border: 1px solid var(--cC);
  box-shadow: 4px 4px 1px var(--cA);
}

a:hover {
  background: var(--cC);
}

footer {
  width: 100%;
  z-index: -1;
  background: url('/aesthetic/assets/lavender.gif');
  position: fixed;
  background-size: 130px;
  bottom: 0;
  background-repeat: repeat-x;
  height: 130px;
}
