/*BODY STUFFS*/
body {
  background-color: #0e0e0e;
  font-family: "Press Start 2P", Arial, Serif;
  height: 100%;
  margin: 0 !important;
  position: relative;
  text-align: center;
  width: 100%;
}

.initial-text {
  border: 1px dashed #fafafa;
  color: #fafafa;
  display: flex;
  flex-direction: column;
  margin: auto;
  left: 35%;
  padding: 30px;
  position: absolute;
  top: 20%;
  right: 35%;
}

.initial-text > .initial-buttons {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.initial-text > .initial-buttons * {
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #fafafa;
  border-radius: 5px;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  padding: 15px;
  width: 175px;
}

.initial-text > .initial-buttons *:hover {
  background-color: #fafafa;
  box-shadow: 2px 2px 2px #bcbaba;
  color: #0e0e0e;
}

.initial-text > .initial-buttons > .controls,
.initial-text > .initial-buttons > .continue {
  margin: 15px 0;
}

.controls-info,
.highscores-container {
  display: none;
  text-align: left;
}

.back,
.reset,
.continue {
  display: none;
}

.back {
  margin-bottom: 20px;
}

.header {
  background-color: #0e0e0e;
  height: 79px;
}

.header-content {
  align-items: center;
  border-bottom: 1px solid #fafafa;
  display: none;
  justify-content: space-between;
  padding: 0 10px;
}

.header-content > h2 {
  color: #fafafa;
}

.header-content > .score {
  color: #39b513;
}

.header-content > .timer {
  color: #f94343;
}

@media screen and (max-width: 600px) {
  .initial-text {
    left: 15%;
    right: 15%;
  }

  .mobile {
    display: block;
  }

  .desktop {
    display: none;
  }
}

@media screen and (min-width: 601px) {
  .mobile {
    display: none;
  }

  .desktop {
    display: block;
  }
}