@font-face {
  font-family: titillium;
  src: url(Titillium_Web/TitilliumWeb-Regular.ttf);
}

@font-face {
  font-family: titillium-bold;
  src: url(Titillium_Web/TitilliumWeb-Bold.ttf);
}

body, html {
  font-family: titillium, sans-serif;
  background: #1e1e24;
  color: white;
}

.icon-image {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 15%;
  min-width: 120px;
}

.GameTitle {
    text-align: center;
    font-weight: bold;
    font-size: 3em;
    font-family: titillium-bold, sans-serif;

    background-color: #19647e;
    background-image: linear-gradient(45deg, #19647e, #28afb0, #f4d35e, #ee964b);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.button-gradient-text {
  /* Fallback: Set a background color. */
  background-color: #19647e;

  /* Create the gradient. */
  background-image: linear-gradient(
    45deg, #ee964b 0%, #f4d35e 50%, #28afb0 50%, #19647e 100%
  );

  /* Set the background size and repeat properties. */
  background-size: 270%;
  background-repeat: repeat;
  background-position: top right;

  /* Use the text as a mask for the background. */
  /* This will show the gradient as a text color rather than element bg. */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;


  animation: button-animation 0.33s 0.15s ease-out forwards;
}

.button-background:hover, .button-background:hover span {
    animation: button-animation-rev 0.33s ease-out forwards;
}

.button-background:active {
  opacity: 0.5;
}

.button-background:hover {
  box-shadow: 3px 2px 10px 1px rgba(0,0,0,0.15);
  transition: 0.5s;
}

@keyframes button-animation {
  0% {
    background-position: top right;
  }
  100% {
    background-position: top left;
  }
}

@keyframes button-animation-rev {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top right;
  }
}

.button-background {
  margin-top: 1em;
  margin-left: auto;
  margin-right: auto;
  background-image: linear-gradient(45deg, #19647e 0%, #28afb0 50%, #f4d35e 50%, #ee964b 100%);
  background-size: 270%;
  background-repeat: repeat;
  background-position: top right;
  animation: button-animation 0.33s 0.15s ease-out forwards;
  display: table;
  border-radius: 0.5em;
  text-decoration: none;
  box-shadow: 0px 0px 20px 1px rgba(0,0,0,0.8);
  padding: 1.5em 0;
  cursor: pointer;
}

.button-background span {
  font-size: 2em;
  text-align: center;
  margin-bottom: 0;
  margin-bottom: -0.25em;
  width: 100%;
  padding: 0 1.5em;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#game-names-container {
  margin-left: auto;
  margin-right: auto;
  margin-top: 2em;
  margin-bottom: 2em;
  width: 600px;
  border-radius: 8px;
  border: solid thin rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.2);
}

#game-names-container p {
    border-top: solid thin rgba(255, 255, 255, 0.2);
    padding: 1em;
    margin: 0;
}

#game-names-container p:first-child {
    border-top: none;
}

footer {
  
}

footer span {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@media screen and (max-width: 600px) {
  .GameTitle {
    font-size: 2em;
  }

  .button-background {
    padding: 1.0em 0;
  }

  .button-background span {
    padding: 0 1.0em;
    font-size: 1.4em;
  }

  #game-names-container {
    width: calc(100% - 30px);
  }
}
