:root {
  --grassblocks: url('/assets/backgrounds/grassblocks.png');
  --plaidgreen: url('/assets/backgrounds/plaidgreen.png');
  --orange: #f25d22;
  --darkgreen: #0f4700;
  --brightgreen: #14ba3a;
  --seafoam: #93E9BE;
  --limey: #6ce077;
  --black: #19181c;
}

* {
  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;
}

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

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

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

#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;
}

.zoom {
  padding: 50px;
  transition: transform .2s;
  width: 100px;
  height: 100px;
  margin: 5px;
}

.zoom:hover {
  transform: scale(1.1); 
}

.book {
  position: fixed;
  margin-left: -40px;
  margin-top: 750px;
}

.book img {
  max-width: 100px;
}

body {
  background-image: var(--grassblocks);
  margin: 0;
  padding: 2em;
  align-items: center;
  font-family: minecraftia, broken_console, system-ui, sans-serif;
}

.container {
  margin: 0 auto;
  padding: 2em;
  max-width: 1000px;
  max-height: 100%;
  align-items: center;
  justify-content: center;
  border: 10px solid white;
  border-radius: .5em;
  background-color: var(--black);
}

.container a {
  color: palegreen;
  text-decoration: none;
}

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

.linkcontainer {
  margin: 0 auto;
  padding: 2em;
  max-width: 1100px;
  max-height: 200%;
  align-items: center;
  justify-content: center;
  border: 5px solid var(--darkgreen);
  border-radius: .5em;
  background-image: var(--plaidgreen);
}

.links {
  justify-content: space-evenly;
  gap: 0.5em;
}

.links img {
  max-width: 230px;
}

header {
  background-color: honeydew;
  border: 4px solid var(--orange);
  color: var(--brightgreen);
  text-align: center;
  padding: 1em;
  margin-bottom: 1em;
}

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

nav {
  background-color: var(--orange);
  border: 4px solid white;
  color: white;
  text-align: center;
  max-width: 700px;
  align-content: center;
  justify-content: space-between;
  margin-bottom: 1em;
}

nav>ul {
  font-family: broken_console;
  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 30px;
}

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

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

main {
  background-color: orangered;
  color: white;
  align-content: center;
  text-align: center;
  padding: .5em 1.5em;
  line-height: 1em;
  margin-bottom: 1em;
}

.row:after {
  content: "";
  display: table;
  clear: both;

}

.column {
  line-height: normal;
  float: left;
  padding: 5px;
  max-width: 1000px;
}

.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: -1.5em;
  width: 60px;
  height: 60px;
}

#float_mc {
  position: fixed;
  float: right;
  margin-top: 50px;
}