* {
  font-family: 'Quicksand',arial, sans-serif;
}

body {
  margin: 0;
  background-color: #fefefe;
}

#wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100vw;
  min-height: 100vh;
}

/* Header */

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

h1 {
  margin: 1rem;
  font-size: 2rem;
  font-weight: 400;
}

header ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  font-weight: 300;
}

header ul li {
  margin: 0 0.5rem;
  text-transform: capitalize;
  cursor: default;
}

.headerMenuOption {
  cursor: pointer;
}

/* Main */

main {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem 0;
}

/* Player */

.player {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 1.5rem;
}

.player:first-child {
  margin-bottom: 3rem;
  transform: rotate(180deg);
}

/* temp */

main {
  margin: 0;
}

.player {
  position: relative;
  height: 40vh;
  margin: 0;
  bottom: 0;
}

.player:first-child {
  transform: rotate(180deg);
  margin-bottom: 0;
  top: 0;
}

.player button {
  width: 100vw;
  height: 30vh;
  border-radius: 0 !important;
}

footer {
  display: none !important;
}

/* end temp */

.player h2 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 300;
}

.playerIcon {
  position: relative;
  font-size: 1rem;
  top: -2px;
}

#player1 .playerIcon {
  color: #fff;
  text-shadow: 1px 1px 1px #000;
}

/* Timer */

#timerContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timer {
  margin: 1rem 0;
}

.timer span {
  font-size: 3rem;
  font-weight: 300;
}

/* Button */

.player button {
  min-width: 200px;
  padding: 0.8rem 0;
  border: none;
  margin: 0;
  background-color: #82c8a0;
  border-radius: 7px;
  box-shadow: 1px 1px 2px rgba(0,0,0,0.4);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1em;
  text-transform: capitalize;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.player button:not(:disabled):hover {
  position: relative;
  top: -1px;
  box-shadow: 4px 4px 8px rgba(0,0,0,0.4)
}

.player button:disabled {
  opacity: 0.2;
  background-color: #fa5a5a;
  cursor: default;
}

/* Footer */

footer {
  font-weight: 300;
  text-align: center;
  margin-bottom: 0.5rem;
}

/* Settings Menu */

#settingsMenu {
  position: absolute;
  top: 128px;
  left: 0;
  right: 0;
  width: 301px;
  height: 202px;
  z-index: 1;
  margin: auto;
  padding: 20px;
  background-color: #fefefe;
  box-shadow: 1px 1px 16px rgba(0,0,0,0.4);
  border-radius: 10px;
}

#settingsMenu form {
  display: flex;
  justify-content: space-between;
}

#closeSettingsMenu {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 1.1rem;
  cursor: pointer;
}

.menuColumn {
  width: 130px;
  display: flex;
  flex-direction: column;
}

.menuColumn:first-of-type {
  padding-right: 20px;
  border-right: 1px solid #d8d8d8;
}

.menuColumn h4 {
  margin: 0 0 1rem;
}

.menuColumn label {
  margin: 0.5rem 0;
}

.menuColumn input {
  border: 1px inset;
  border-radius: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.menuRow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

input {
  line-height: 1.4rem;
}

input[type="text"] {
  max-width: 100%;
  padding: 3px 5px;
}

input[type="number"] {
  width: 2.2rem;
  padding: 3px 5px;
}

input:disabled {
  background-color: #fff;
  opacity: 0.6;
}

#settingsMenuControls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
}

#settingsMenuControls small {
  color: red;
}

#settingsMenuControls button {
  cursor: pointer;
}

#settingsMenuControls button:disabled {
  cursor: not-allowed;
}

@media screen and (min-width: 630px) {
  h1 {
    font-size: 2.5rem;
  }
  main {
    margin: 4rem 0;
  }
  .player:first-child {
    margin-bottom: 4rem;
  }
  .player h2 {
    font-size: 1.5rem;
  }
  .playerIcon {
    font-size: 1.15rem;
  }
  .timer {
    margin: 2rem;
  }
  .timer span {
    font-size: 5rem;
  }
  .player button {
    max-width: 250px;
    padding: 1rem 0;

    
}
.article {
  padding: 10%;
}
}


.article {
  all:revert;
  padding: 10% 20% 1%;
}