@import url('https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300|Lato:300,400&display=swap');

body{
  --tan: #ffe08e;
  --dark: #230e06;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  background-color:#331406;
  color: var(--tan);
  text-align: center;
  padding: 0;
  margin: 0;
}

html {
  max-width: 100%;
  overflow-x: hidden;
}

h2{
  font-weight: 300;
  font-size: 28px;
  margin-top: 0px;
  margin-bottom: 10px;
}

.headerButton{
  display: inline-block;
  text-decoration: none;
  color: var(--tan);
  font-family: 'Open Sans Condensed', sans-serif;
  font-weight: bold;
  font-size: 28px;
  letter-spacing: 2px;
  background-color: #632e16;
  border: 1px solid transparent;
  border-radius: 10px;
  margin: 10px;
  padding: 2px 10px;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.5);
  transition-duration: 0.2s;
  cursor: pointer;
}

.socialButton{
  margin: 8px;
  height: 40px;
  cursor: pointer;
  transition-duration: 0.1s;
}

.socialButton:hover{
  transform: scale(1.2);
}

.downloadButton{
  padding: 5px 10px;
  height: 50px;
}

.headerButton:hover{
  box-shadow: 0px 3px 16px rgba(0, 0, 0, 1);
  background-color: #833e26;
  transform: translateY(-2px);
}

.headerButton:focus, .socialButton:focus{
  border: 1px solid var(--tan);
  outline: none;
}

.headerButton:active{
  background-color: #934e36;
  transition-duration: 0s;
  transform: translateY(2px);
}

.header{
  padding: 5px;
  padding-top: 15px;
  margin: -10px;
  margin-bottom: 60px;
  text-align: center;
  background: linear-gradient(to right, #330e06 , #431806, #330e06);
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.5);
  position: fixed;
  width: 100%;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

figure > a{
  text-decoration: none;
}

#spacer{
  height: 100px;
}

.planet{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fixedBehind{
  position: absolute;
}

.main{
  margin-top: 70px;
  height: 800px;
}

.embeddedImage{
  height: 256px;
}

.my-gallery{
  text-align: center;
  transform: translateY(20px);
}

.textContainer{
  text-align: center;
  width: 60%;
  margin: auto;
  padding: 32px;
  margin-top: 20px;
  border-radius: 12px;
  border: 1px solid var(--tan);
  border-left: none;
  border-right: none;
  background-color: var(--dark);
  font-size: 18px;
}

figure{
  display: inline;
  margin: 0;
}

.divider{
  margin: 24px;
  margin-left: auto;
  margin-right: auto;
  height: 1px;
  width: 100px;
  background-color: var(--tan);
}

.dividerLeft{
  margin: 24px 0px;
  height: 1px;
  width: 100px;
  background-color: var(--tan);
  position:relative;
}

.gamedesc{
  padding: 18px;
  padding-top: 0px;
  vertical-align: top;
}

.gamecard{
  width: 600px;
  display: inline-block;
  background-color: var(--dark);
  vertical-align: top;
  margin: 24px;
  border: 4px solid #632e16;
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 1);
}

.banner{
  background-color: var(--dark);
  padding: 20px;
  border: 1px solid #632e16;
  border-left: none;
  border-right: none;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.5);
}

.small{
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0px;
  margin-left: 0px;
}

a:link { color: var(--tan); }

a:visited { color: var(--tan); }

.tarotButton, .tarotButton:focus, .tarotButton:active, .tarotButton:hover, .tarotButton:visited{
  color: #ffcd2a;
  border: 1px solid #ffcd2a;
  background-color: black;
}

@media only screen and (max-width: 900px) {
  
  body {
    font-size: 24px;
  }

  .header .headerButton {
    font-size: 40px;
  }

  .banner {
    font-size: 30px;
  }

  .small {
    font-size: 30px;
  }

  #spacer {
    height: 200px;
  }
}