body {
  font-family: 'Righteous', cursive;
  background-color: #00031B;
}

@media screen and (min-width: 800px) {

  /* SPLASH SCREEN STUFF */

  .splash-screen {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transition: all 1s ease;
  }

  .splash-text {
    text-align: center;
    color: white;
    z-index: 10;
    opacity: 0;
    margin-top: 100px;
    animation: 1s slideUp 1s forwards;
  }

  .splash-text h1 {
    font-size: 8rem;
    color: #fd852f;
    -webkit-text-stroke: 1px white;
    text-shadow: 3px 3px 0;
    margin-bottom: 20px;
  }

  @keyframes slideUp {
    100% {
      opacity: 1;
      margin-top: -40px;
    }
  }  

  .btn {
    background-color: #b954e2;
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    font-size: 2rem;
    border-radius: 5px;
    display: inline-block;
    -webkit-box-shadow:    0 8px 0 #6a0d91, 0 15px 20px rgba(0, 0, 0, .35);
    -moz-box-shadow: 0 8px 0 #6a0d91, 0 15px 20px rgba(0, 0, 0, .35);
    box-shadow: 0 8px 0 #6a0d91, 0 15px 20px rgba(0, 0, 0, .35);
  }

  .button:active {
    -webkit-transform: translate(0, 4px);
    -moz-transform: translate(0, 4px);
    -o-transform: translate(0, 4px);
    transform: translate(0, 4px);
  }

  /* GAME SCREEN STUFF */

  #game-screen {
    transition: all 1s linear;
  }

  .overlay {
    background-color: rgba(255, 255, 255, 0.65);
    width: 70vw;
    height: 75vh;
    border-radius: 20px;
    box-shadow: 0px 6px 20px 7px rgba(0,0,0,.5);
    display: flex;
    flex-direction: column;
    color: rgb(0, 0, 32);
    justify-content: center;
    align-items: center;
    padding: 40px;
    position: relative;
  }

  #typed {
    font-size: 4em;
    text-align: center;
    margin: 0 30px;
  }

  .overlay p {
    font-size: 3em;
    text-align: center;
  }

  .spaceship {
    width: 180px;
    height: 230px;
    border-radius: 30px;
    background-color: rgba(255, 177, 1, 0.42);
    display: inline-block;
    margin: 20px;
    transition: transform .2s;
    cursor: pointer;
    border: 3px solid #97640559;
  }

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

  .spaceship-avatar {
    width: 100px;
    height: 120px;
    padding: 10px;
    border-radius: 30px;
    border: 3px solid #ff990000;
    display: inline-block;
    margin: 10px;
    position: absolute;
    left: 0;
    bottom: 0;
  }

  .spaceship-avatar-2 {
    width: 100px;
    height: 120px;
    padding: 10px;
    border-radius: 30px;
    border: 3px solid #ff990000;
    display: inline-block;
    margin: 10px;
    position: absolute;
    right: 0;
    top: 0;
  }

  .spaceship-overlay-one {
    width: 107px;
    height: 125px;
    padding: 10px;
    border-radius: 30px;
    background-color: rgba(255, 177, 1, 0.42);
    border: 3px solid #ff9900ba;
    display: inline-block;
    margin: 10px;
    position: absolute;
    left: 0;
    bottom: 0px;
    z-index: 40;
  }

  .spaceship-overlay-two {
    width: 107px;
    height: 124px;
    padding: 10px;
    border-radius: 30px;
    background-color: rgba(255, 177, 1, 0.42);
    border: 3px solid #ff9900ba;
    display: inline-block;
    margin: 10px;
    position: absolute;
    z-index: 40;
    right: 0;
    bottom: calc(100% - 166px);
  }

  .board {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }

  .deck-div {
    /* position: relative; */
    pointer-events: none;
  }

  .deck {
    position: absolute;
    top: 40%;
    left: 5%;
    height: 80px;
    width: 80px;
    cursor: pointer;
    transition: transform .3s;
    padding: 25px 10px;
    background-color: #730f9e;
    box-shadow: 1px 1px 7px 0px grey;
  }

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

  .card {
    height: 80px;
    width: 80px;
    cursor: pointer;
    transition: transform .3s;
    padding: 20px 15px;
    margin: 5px;
    background-color: #730f9e;
    box-shadow: 1px 1px 7px 0px grey;
  }

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

  .instructions-text {
    margin: 100px 0;
    font-size: 2.3em;
    max-width: 500px;
    text-align: center;
    min-height: 104px;
  }

  /* PLAYER STATS */
  .player-one-stats {
    position: absolute;
    bottom: 2%;
    right: 5%;
  }

  .player-two-stats {
    position: absolute;
    top: 2%;
    left: 5%;
  }

  .graveyard-card {
    position: absolute;
    top: 40%;
    right: 5%;
    height: 100px;
    width: 100px;
    padding: 30px 15px;
    background-color: #730f9e;
    box-shadow: 1px 1px 7px 0px grey;
    pointer-events: none;
  }


  /* FOOTER/ MISC */

  footer {
    background-color: #014552;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
  }

  footer a {
    color: white;
  }

  .ghost {
    opacity: 0;
  }

  .hidden {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .card {
    height: 80px;
    width: 60px;
    cursor: pointer;
    transition: transform .3s;
    padding: 20px 15px;
    margin: 3px;
    background-color: #730f9e;
    box-shadow: 1px 1px 7px 0px grey;
  }

  .instructions-text {
    margin: 70px 0;
    font-size: 2.3em;
    max-width: 500px;
    text-align: center;
    min-height: 104px;
  }
}

@media screen and (max-height: 370px) {
  .card {
    height: 80px;
    width: 60px;
    cursor: pointer;
    transition: transform .3s;
    padding: 20px 15px;
    margin: 3px;
    background-color: #730f9e;
    box-shadow: 1px 1px 7px 0px grey;
  }

  .instructions-text {
    margin: 50px 0;
    font-size: 2.3em;
    max-width: 500px;
    text-align: center;
    min-height: 104px;
  }

  .spaceship {
    width: 130px;
    height: 180px;
    border-radius: 30px;
    background-color: rgba(255, 177, 1, 0.42);
    display: inline-block;
    margin: 20px;
    transition: transform .2s;
    cursor: pointer;
    border: 3px solid #97640559;
  }

}

