@import url("https://fonts.googleapis.com/css2?family=Jua&display=swap");

body {
  background-color: #b6d2da;
}

* { 
  color: #303024;
  font-family: "Jua", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  padding: 0;
}

p {
  margin-bottom: 0.75em;
}

h1 {
  font-size: 3.5em;
}
h2 {
  padding-top: 0.5em;
  font-size: 2.5em;
}
h3 {
  font-size: 1.5em;
}
ul {
  padding-left: 1em;
}
.center {
  text-align: center;
}

.page-color {
  background-color: #b6d2da;
}

.inverse-color {
  color: #eaf4e8;
}

.content {
  max-width: 8.5in;
  margin: auto;
  padding: 1em;
  padding-bottom: 0.5em;
}

/*
/* HEADER
*/
#header-strip {
  background-color: #72545c;
  padding: 1em;
}

#header {
}

.navigation-links {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1em;
}
.navigation-button {
  margin: 0.5em;
  background-color: #eaf5e8;
  padding: 0.5em;
  border-radius: 0.5em;
}
.navigation-button:hover, .link-text:hover {
  background-color: #be8df3;
}

.banner {
  background-image: url("/assets/images/banner.png");
  
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  
  object-fit: none;
  width: 100%;
  height: 2in;
}

#avatar {
  background-image: url("/assets/images/avatar.png");
  
  background-size: cover;

  width: 7em;
  height: 7em;
  border-radius: 1em;
  margin: 1em;
}

/* 
/* GENERAL FORMATTING
*/

.scroll {
  align-items: center;
  justify-content: start;
  
  background-color: #eaf5e8;

  margin: 2em;
  margin-left: 1em;
  margin-right: 1em;
  padding: 0.8em;
  border-radius: 0.5em;
}
.shadow {
  box-shadow: 8px 6px #48747e;
}
.flex {
  display: flex;
  flex: 0 1 auto;
}
.inline-block {
  display: inline-block;
  margin: auto;
  vertical-align: middle;
}
.summary-text {
  padding: 0.4em;
}
.sub-text {
  color: #72545c;
}

/*
/* GAMES
*/

.tagline {
  font-size: 1em;
  font-style: italic;
}

iframe {
  max-height: 100%;
  max-width: 100%;
  border-radius: 0.4em;
  object-fit: contain;
}


.link-text {
  margin: 0.4em;
  margin-left: 0;
  text-decoration: none;
  padding: 0.5em;
  background-color: #72545c;
  color: #eaf5e8;
  border-radius: 0.4em;
}

a {
  display: inline-block;
  text-decoration: none;
}

/* 
/* IMAGES
*/
.thumbnail {
  position: relative;
  margin-right: 0.8em;
}

.game-image {
  height: 7em;
  width: auto;
  border-radius: 0.4em;
  object-fit: contain;
}

.game-logo {
  max-height: 2in;
  max-width: 75%;
}

.zoomable-image:hover {
  outline: 5px solid #be8df3;
  outline-offset: -3px;
}

#fullscreen-backer {
  display: none; /* none or flex */
  position: fixed;
  z-index: 255;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-size: contain;
  background-color: rgba(48,48,36,.75);
  justify-content: center;
  align-items: center;
}

#fullscreen-image {
  max-width: 90%;
  max-height: 90%;
  background-size: contain;
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  opacity: 1;
}

#fullscreen-x {
  position: fixed;
  max-width: 32px;
  top: 8px;
  left: 8px;
}
