/* Variables */
:root {
  --orange: #ffa600;
  --grey: #f3f3f3;
  --white: #fff;
  --base-color: var(--orange);
}

/* Mixins */
.transition {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.corners {
  -moz-border-radius: var(--radius);
  -webkit-border-radius: var(--radius);
  border-radius: var(--radius);
  -khtml-border-radius: var(--radius);
}

body {
  background: var(--base-color);
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  height: 100%;
}

.wrapper {
  width: 800px;
  margin: 30px auto;
  color: var(--white);
  text-align: center;
}



h1 {
  font-family: 'Roboto', sans-serif;
  font-weight: 100;
  font-size: 1.6em;
  text-transform: uppercase;
}

h2 {
  font-family: 'Roboto', sans-serif;
  font-weight: 100;
  font-size: 0.9em;
  font-weight: bold;
  text-transform: uppercase;
  color: red;
}

h3 {
  font-family: 'Roboto', sans-serif;
  font-weight: 100;
  font-size: 0.9em;
  font-weight: bold;
  text-transform: uppercase;
  
}

#seconds,
#tens {
  font-size: 2em;
}

button {
  --radius: 5px;
  @include corners(5px);
  background: var(--base-color);
  color: var(--white);
  border: solid 1px var(--white);
  text-decoration: none;
  cursor: pointer;
  font-size: 1.2em;
  padding: 18px 10px;
  width: 180px;
  margin: 10px;
  outline: none;

  &:hover {
    @include transition;
    background: var(--white);
    border: solid 1px var(--white);
    color: var(--base-color);
  }

  &:active {
    @include transition;
    background: green;
    border: solid 1px var(--white);
    color: green;
  }
}

/* Add a style for the clicked button state */
.color-change.clicked {
  background-color: #B5E37A; /* Change this to the desired color */
  color: #ffffff; /* Change this to the desired text color */
}


/* Add a style for the divs */
.hidden {
      display: none;
    }

    .container {
      width: 300px;
      margin: 50px auto;
      text-align: center;
    }

    .button {
      padding: 10px;
      margin: 10px;
      cursor: pointer;
    }
