/* font-family: "Comic Neue", cursive; GRAPHIC DESIGN IS MY PASSION */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* remove default spacing */
/* force styling of type through styling, rather than elements */

* {
  margin: 0;
  padding: 0;

  text-align: center;
}

/* dark mode user-agent-styles */

html {
  height: 100%;
  color-scheme: dark light;
}

/* min body height */

body {
  min-height: 100vh;
}

/* responsive images/videos */
img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
}

ul,
menu {
  list-style-type: none;
}

body {
  padding: 1rem;
  background-color: pink;
}

.wrapper {
  display: grid;
  grid-template-columns: 2fr 3fr 2fr;
  grid-template-rows: repeat(6, 1fr);
  column-gap: 10px;
  row-gap: 10px;
  min-height: 0;
  min-width: 0;
  height: 95vh;
}
#imageSection {
  grid-column: 1;
  grid-row: 1/5;
}
#imageText {
  grid-column: 1;
  grid-row: 5;
}
#fact {
  grid-column: 1;
  grid-row: 6;
}
#title {
  grid-column: 2;
  grid-row: 1;
}
#sinceWeFirstSpoke {
  grid-column: 2;
  grid-row: 2/4;
}
#untilWeMeet {
  grid-column: 2;
  grid-row: 4/6;
}
#date {
  grid-column: 2;
  grid-row: 6;
}
#cutele {
  grid-column: 3;
  grid-row: 1/6;
}
#themes {
  grid-column: 3;
  grid-row: 6;
}

#mainUnitSinceFirstSpoke,
#mainUnitUntilWeMeet {
  font-size: 4rem;
  margin: 0;
}

#otherUnitsSinceFirstSpoke,
#otherUnitsUntilWeMeet {
  font-size: 1.25rem;
  margin: 0;
}

#cutele {
  padding-left: 4rem;
  padding-right: 4rem;
}

#cuteleClues {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(4, 1fr);
}

#cuteleReward {
  overflow: scroll;
  height: 30%;
}

.cell {
  border: 2px solid black;
  background-color: grey;
  height: 3rem;
  width: 2.5rem;
  margin: 0.25rem;
  font-size: 2rem;
  align-content: center;
}

.yellow {
  background-color: yellow;
}

.green {
  background-color: lime;
}

#imageSection {
  align-items: center;
  justify-content: center;
}

#imageFrame {
  border: blue solid 0.25rem;
  margin: 1rem;
  width: 90%;
  height: 90%;
  background-color: white;
  display: flex;

  overflow: hidden;
}

#image {
  align-self: center;
}

#dateNavigation {
  display: inline-flex;
  justify-content: center;
  align-content: center;
}

#dateNavigation p {
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 1.5rem;
}

#dateNavigation a {
  text-decoration: none;
  color: darkslategray;
  font-size: 1.5rem;
}

#dateNavigation a:hover {
  color: lightseagreen;
}
