body {
  font-family: century-gothic, "Trebuchet MS", sans-serif;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  color: #CCC;
  background-color: transparent;
}

#container
{
    top:0;
    z-index: 12;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    height: 100%;
    width: 50%;
    font-size: 1.4vw;
    text-align: center;
    overflow: visible;
    /*white-space:nowrap;*/
}

h1
{
  margin: 5px;
}

#logo
{
  width: 100px;
  height: 100px;
  margin-left: auto;
  margin-right: auto;
}

#warning {
  color: #ff7223;
}

#warning-text {
  font-weight: bold;
}

.ctas
{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.5em;
    width: 100%;
    cursor: pointer;
    user-select: none;
}

.cta-button {
    flex-grow: 1;
    flex-basis: 0;
    background-color: #33a8c1;
    color: #272729;
    font-size: 1.9em;
    text-shadow: none;
    cursor: pointer;
    text-decoration: none;
}

.cta-button:hover
{
    color: #33a8c1;
    background-color: #272729;
}


#play-ep, #startButton, #startButtonDeskMob
{
    background-color: #ff7223;
    color: #272729;
}

#play-ep:hover, #startButton:hover, #startButtonDeskMob:hover
{
    color: #ff7223;
    background-color: #272729;
}

.instructions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  user-select: none;
  width: 100%;
  background-color: #171719;
}

p {
  padding: 5px;
}

.spacebarman
{
  text-decoration: none;
  margin-top: 10px;
}

.italic {
  font-style: italic;
}

.sm
{
  font-weight: bold;
}

.toggle-credits {
  align-self: flex-end;
  position: relative;
  bottom: 10px;
  text-align: right;
  margin-right: 20px;
}

a {
  text-decoration: underline;
  color: #CCC;
}

a:hover {
  color: #ff7223;
}

.toggle-credits {
  text-decoration: none;
  color: #CCC;
  cursor: pointer;
  display: inline;
}

.hidden {
  display: none;
}


@media only screen and (hover: none) and (pointer: coarse){

  #container
  {
      width: 100%;
      font-size: 3.5vw;
  }

}