body{
    background-color:rgb(217, 210, 176);
    font-family: 'Inclusive Sans', sans-serif;
    width: auto;
    padding-top: 5px;
    padding-left: 35px;
    padding-right: 35px;
}
h3{
  font-family: 'Inclusive Sans', sans-serif;
  color: rgb(88, 80, 64);
  font-size: 30px;
}
h4{
    font-family: 'Inclusive Sans', sans-serif;
    color: rgb(88, 80, 64);
    font-size: 25px;
}
h5{
    font-family: 'Inclusive Sans', sans-serif;
    color: rgb(88, 80, 64);
    font-size: 15px;
}
p{
  font-size: 12px;
}

/* buttons:modes */
button{
    padding: 10px;
    font-family: 'Inclusive Sans', sans-serif;
}
.clock, .countdown, .stopwatch {
  appearance: none;
  background-color: transparent;
  border: 2px solid #000000;
  border-radius: 15px;
  box-sizing: border-box;
  color: #3B3B3B;
  cursor: pointer;
  display: inline-block;
  padding: 16px 24px;
  text-align: center;
  text-decoration: none;
  transition: all 350ms;
  touch-action: manipulation;
  will-change: transform;
}

.clock:hover, .countdown:hover, .stopwatch:hover {
  color: #fff;
  background-color: #9d9886;
  transform: translateY(-3px);
}

.clock:focus, .countdown:focus, .stopwatch:focus {
  color: #fff;
  background-color: #393834;
}

.clock:active .countdown:active .stopwatch:active, .play:active, .pause:active, .stop:active {
  box-shadow: none;
  background-color: #7b776a;
  transform: translateY(0);
}

/* button:buttons */
.play, .pause, .restart {
  appearance: none;
  background-color: transparent;
  border: none;
  border-radius: 100px;
  box-sizing: border-box;
  color: #3B3B3B;
  cursor: pointer;
  display: inline-block;
  padding: 16px 24px;
  text-align: center;
  text-decoration: none;
  transition: all 400ms;
  touch-action: manipulation;
  will-change: transform;
}

.play:hover, .pause:hover, .restart:hover {
  color: #fff;
  background-color: transparent
}

.play:focus, .pause:focus, .restart:focus {
  color: #ffffff;
  background-color:#3b3b3b58
}
/* colors */
#colors{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr ;
  padding: 10px;
  text-align: center;
}
#modes {
  width: 100px;
  height: 100px;
  background: #9d9886;
}
#background {
  width: 100px;
  height: 100px;
  background: #D9D2B0;
  outline: solid 1px #000000;
}
#buttons {
  width: 100px;
  height: 100px;
  background: #b4a287;
}
#font-color {
  width: 100px;
  height: 100px;
  background: #3B3B3B;
}
#h1 {
  width: 100px;
  height: 100px;
  background: #585040;
}

/* fonts */
h6{
  font-family: 'Inclusive Sans', sans-serif;
  color: #3B3B3B;
  font-size: 15px;
}

/* time display */
h1{
  font-family: 'Inclusive Sans', sans-serif;
  color: rgb(88, 80, 64);
}

input{
  color:#3B3B3B;
  font-family: 'Inclusive Sans', sans-serif;
  font-weight: 600;
  font-size: 18px;
}

.hours, .min, .sec{
  background-color:rgb(217, 210, 176);
  width: 40px;
  height: 45px;
  text-align: center;
  border: none;
}

footer{
  padding-top: 15px;
  padding-bottom: 10px;
  text-align: center;
}

@media screen and (max-width: 696px) {
  #colors{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr ;
  padding: 10px;
  text-align: center;
}
}