body{
  width: 100%;
  background-color: #333;
  text-align: center;
}

h1, h2, h3, h4{
  color: #FF8C00;
  font-family: 'Rubik', sans-serif;
  text-align: center;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

h2{
  font-size: 30px;
  margin-top: 10px;
  margin-bottom: 0;
}

h2 span{
  padding-right: 10px;
  padding-left: 10px;
}

#breakFrame{
  width: 180px;
  height: 120px;
  border: 2px #FF8C00 solid;
  display: inline-block;
  margin: 30px auto;
}

#breakFrame h2:nth-child(1){
  color:#ff3333;
}

#timeFrame{
  width: 180px;
  height: 120px;
  border: 2px #FF8C00 solid;
  display: inline-block;
  margin: 30px auto;
}

#timeFrame h2:nth-child(1){
  color:#47d147;
}

#mainFrame{
  border-radius: 100%;
  border: 2px #FF8C00 solid;
  width: 425px;
  height: 425px;
  margin: 45px auto;
  -webkit-transition: box-shadow 500ms linear,
                      background-color 1500ms linear;
  -moz-transition: box-shadow 500ms linear,
                   background-color 1500ms linear;
  -o-transition: box-shadow 500ms linear,
                 background-color 1500ms linear;
  transition: box-shadow 500ms linear,
              background-color 1500ms linear;
}

#mainFrame:hover{
  box-shadow: 0 -25px 50px 20px rgba(0, 0, 0, 0.4);
}

#timeLeft{
  margin-top: 50%;
  color: #47d147;
}

/****** modal stuff ******/
/* Outer */
.popup {
    width:100%;
    height:100%;
    display:none;
    position:fixed;
    top:0px;
    left:0px;
    background:rgba(0,0,0,0.75);
}

/* Inner */
.popup-inner {
    max-width:700px;
    width:80%;
    padding:40px;
    position:absolute;
    top:50%;
    left:50%;
    -webkit-transform:translate(-50%, -50%);
    transform:translate(-50%, -50%);
    box-shadow:0px 2px 6px rgba(0,0,0,1);
    border-radius:3px;
    background: #707070;
}

/* Close Button */
.popup-close {
    width:35px;
    height:35px;
    padding-top:4px;
    display:inline-block;
    position:absolute;
    top:0px;
    right:0px;
    transition:ease 0.25s all;
    -webkit-transform:translate(50%, -50%);
    transform:translate(50%, -50%);
    border-radius:1000px;
    background:rgba(255,140,0,1);
    font-family:Arial, Sans-Serif;
    font-size:25px;
    text-align:center;
    line-height:100%;
    color:#fff;
}

.popup-close:hover {
    text-decoration:none;
}