/* 
Copyright (c) 2009, Brian Haines, One by Four
info@onebyfourstudio.com

This Font Software is licensed under the SIL Open Font License, Version 1.1.
*/
@font-face {
  font-family: "Matchbook";
  src: url(fonts/Matchbook/Matchbook.otf) format("OpenType");
  font-weight: normal;
}

/* 
Copyright 2016 The Archivo Project Authors (omnibus.type@gmail.com)

This Font Software is licensed under the SIL Open Font License, Version 1.1. 
*/
@font-face {
  font-family: "Archivo";
  src: url("fonts/archivo/Archivo-Regular.ttf");
  font: normal;
}

body {
  background-color: rgb(57, 94, 59);
  margin: 0;
  display: flex;
  flex-direction: column;
}

body header {
  display: flex;
  padding-left: 10px;
  font-family: "Matchbook";
  font-size: large;
  background-color: darkred;
  height: 100px;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.4);
}

body header a {
  font-size: larger;
}
.intro {
  width: 80%;
  padding-top: 5px;
  padding-bottom: 5px;
  margin: 0 auto;
  color: white;
}
.game--list {
  width: 75%;
  margin: 0 auto;
}

.game {
  margin-top: 10px;
  min-height: 30px;
  border-radius: 5px;
  box-shadow: 1px 1px 0px 1px rgba(0, 0, 0, 0.4);
  background-color: beige;
  padding: 5px;
  display: flex;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.game div {
  min-width: 8ch;
}

.game img {
  max-height: 30px;
}
.game:hover {
  box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.4);
}

.game--title {
  flex: 1;
  border-right: 1px dashed rgb(180, 180, 180);
  padding-right: 5px;
}

.game--played {
  padding: 0 5px 0 5px;
  border-right: 1px dashed rgb(180, 180, 180);
}

.game--grade {
  padding: 0 5px 0 5px;
}

.selected {
  transform: translate(15px, 0px);
}

.copy{
 text-align: center;
 color: white;
}
.back--button {
  margin: 30px auto 0px auto;
  text-align: center;
}

.back--button a {
  color: #000;
  text-decoration: none;
  padding: 5px 15px;
  border-radius: 5px 5px 0 0;
  box-shadow: 1px 1px 0px 1px rgba(0, 0, 0, 0.4);
  background-color: beige;
}
.content {
  /*border-radius: 2px 2px 0px 0px;*/

  border: 1px solid lightblue;
  box-sizing: border-box;
  position: fixed;
  bottom: 0;
  left: 10%;
  right: 10%;
  padding: 20px 20px 10px 20px;
  background-color: rgb(255, 246, 246);
  width: 80%;
  height: 50vh;
  box-shadow: 10px 20px 3px 4px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s ease-in-out;
}

.content--band {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.content--title {
  margin: 0%;
}
.content--grade img {
  max-height: 60px;
}
.hidden {
  transform: translate(0, 60vh);
}
