/*
SPACING SYSTEM (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

FONT SIZE SYSTEM (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98
*/

/* COLOR THEME */
:root {
  --primary-color: #007bff;
  --secondary-color: #6c757d;
  --background-color: #000;
  --text-color: #0f0f0f;
  --btn-text: #eee;
  --btn-color: #333;
  --btn-color2: #444;
  --btn-color3: #555;
  --btn-shadow: #111;
}

/* UNIVERSALS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Times New Roman", Times, serif;
  line-height: 1.6;
  color: white;
  background-color: var(--background-color);
  overflow-x: hidden;
}

.page {
  width: 80%;
  min-height: 100dvh;
  margin: auto;
}

.hero {
  height: 100dvh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-welcome {
  position: absolute;
  z-index: 1000;
  color: yellow;
  font-size: 5rem;
  font-weight: bolder;
}
.hero-eye {
  height: 100%;
  position: absolute;
}
.hero-list {
  color: white;
  z-index: 1000;
  position: absolute;
  right: 0;
  top: 10%;
}
.dark-secrets {
  position: absolute;
  left: -10%;
  width: 450px;
}

.page2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-image: url(media/imgs/sparkles.gif);
}
.page2-headline {
  font-size: 4rem;
  margin-left: 5rem;
}
.page3 {
  display: flex;
  justify-content: center;
  position: relative;
}
.page3-eye {
  position: absolute;
  bottom: 150px;
  left: 0;
  z-index: 1000;
}
.creepy-forest {
  width: 80%;
}
.page4 {
  background-image: url(media/imgs/sparkles2.gif);
}

/* BUTTONS */

.btn {
  padding: 10px 20px;
  background-color: var(--btn-color);
  color: var(--btn-text);
  border-radius: 5px;
}

.clickable {
  background-color: var(--btn-color);
  box-shadow: 0 3px var(--btn-shadow);
  transform: translateY(-3px);
}

.clickable:hover {
  background-color: var(--btn-color2);
  box-shadow: 0 5px var(--btn-shadow);
  transform: translateY(-5px);
  cursor: pointer;
}

.clickable:active {
  background: var(--btn-color3);
  box-shadow: 0 2px var(--btn-shadow);
  transform: translateY(-2px);
}

/* Media Queries for Mobile */
@media (max-width: 768px) {
  .container {
    width: 95%;
  }
}
