:root {
  --starry: url('/assets/backgrounds/starry.png');
  --dimrainbow: url('/assets/backgrounds/dimrainbow.png');
  --white: white;
  --orange: #f25d22;
  --darkgreen: #0f4700;
  --brightgreen: #14ba3a;
  --seafoam: #93E9BE;
  --limey: #6ce077;
  --gold: #c99c08;
}

* {
  box-sizing: border-box;
}

@font-face {
  font-family: 'aqua_smileregular';
  src: url('/fonts/aqua_smile/aqua_smile-webfont.woff2') format('woff2'),
    url('/fonts/aqua_smile/aqua_smile-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'crayon_blockregular';
  src: url('/fonts/crayon_block/crayonblock-regular-webfont.woff2') format('woff2'),
    url('/fonts/crayon_block/crayonblock-regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

#peek img {
  max-width: 30px;
}

#peekbox {
  display: none;
  margin: 0 auto;
  padding: 2em;
  max-width: 500px;
  max-height: 500%;
  position: fixed;
  margin-left: -40px;
  margin-top: 450px;
  align-items: center;
  justify-content: center;
  border: 5px solid var(--darkgreen);
  border-radius: .5em;
  background-color: var(--orange);
  color: white;
}

#peekbox img {
  max-width: 120px;
}

body {
  background-image: var(--starry);
  margin: 5em;
  padding: 2em;
  font-family: aqua_smileregular, system-ui, sans-serif;
}

.container {
  margin: 5em;
  padding: 2em;
  max-width: 2000px;
  max-height: 200%;
  align-items: center;
  justify-content: center;
  border: 5px solid var(--gold);
  border-radius: .5em;
  background-image: var(--dimrainbow);
}

.container a {
  color: yellow;
}

.container a:hover {
  color: var(--orange);
}

header {
  background-color: purple;
  border: 7px solid yellow;
  color: gold;
  font-size: 30px;
  text-align: center;
  padding: 1em;
  margin-bottom: 1em;
}

h1 {
  font-size: 5.5em;
  margin: 0;
  padding-top: 10px;
}

nav {
  background-color: Purple;
  border: 4px solid white;
  color: white;
  text-align: center;
  max-width: 800px;
  font-size: 30px;
  justify-content: space-between;
  margin-bottom: 1em;
}

nav>ul {
  font-family: crayon_blockregular;
  display: flex;
  padding: 0;
  margin: 0;
  list-style-type: none;
  justify-content: space-evenly;
}

nav li:not(:last-child) {
  border-right: 4px solid white;
  padding: 25px;
}

nav li:last-child {
  padding: 25px;
}

nav li a {
  color: gold;
  text-decoration: none;
}

main {
  background-color: #FFFFFFB3;
  color: rebeccapurple;
  padding: 2em 1.5em;
  line-height: 1em;
  margin-bottom: 1em;
}

.banners {
  background-color: var(--orange);
  padding: 1.5em 1.5em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5em;
}

.banners img {
  width: 80px;
  height: 50px;
}

.socials {
  text-align: center;
}

.socials img {
  margin-top: 3em;
  width: 60px;
  height: 60px;
}

.banner_ads {
  color: var(--white);
  background-color: var(--orange);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
}

.banner_ads img {
  max-width: 240px;
}

/* Floating Images / Text */
#float_chuzzlogo {
  max-width: 600px;
  position: absolute;
  margin-left: 560px;
  margin-top: -70px;
}

#float_chuzzles {
  max-width: 500px;
  position: absolute;
  margin-left: 10px;
  margin-top: -50px;
}

#float_celestial {
  max-width: 170px;
  position: absolute;
  margin-left: -40px;
  margin-top: 300px;
}

#float_stinky {
  max-width: 200px;
  position: absolute;
  margin-left: 400px;
  margin-top: 700px;
}

#float_kittyball {
  max-width: 170px;
  position: absolute;
  margin-left: 1200px;
  margin-top: 650px;
}

#float_melony {
  max-width: 170px;
  position: absolute;
  margin-left: 1470px;
  margin-top: 100px;
}

/* Floating Images / Text */