#container {
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#timerWrapper {
  background: #605C5C;
  border: 15px solid #000000;
  width: 520px;
  height: 250px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#timerTitle {
  text-align: center;
  text-transform: uppercase;
  font-family: 'Libre Baskerville', serif;
  font-weight: 700;
  font-size: 34px;
}
#timerContent {
  display: flex;
}
#timerCopyright {
font-family: 'Josefin Sans', sans-serif;
font-weight: 400;
font-size: 20;
}
#timer {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 700;
  font-size: 59px;
  background: #B0C5C0;
  border: 6px solid #000000;
  width: 380px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#timerButtons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 15px;
}
#timerButtonStartStop {
  background: #488230;
  border: 1px solid #000000;
  width: 103px;
  height: 64px;
  font-family: 'Martian Mono', monospace;
   text-transform: uppercase;
  font-weight: 300;
  font-size: 19;
  margin-bottom: 15px;
  cursor: pointer;
}
#timerButtonClear {
  background: #BA3737;
  border: 1px solid #000000;
  width: 103px;
  height: 64px;
  font-family: 'Martian Mono', monospace;
   text-transform: uppercase;
  font-weight: 300;
  font-size: 20;
  cursor: pointer;
}

