@import url(https://fonts.googleapis.com/css?family=MedievalSharp:400);

.okvir {
  width: 100%;
  background-color: black;
}

.gumba{
  display: flex;
  flex-direction: row;
  white-space: nowrap;
}

button {
  position: relative;
  margin-left: 0.5vw;
  margin-right: 0.5vw;
  top: 10vh;
  left: 29vw;
  width: 20vw;
  height: 6vh;
  font-size: 3vh;
  color: white;
  font-family: "MedievalSharp", Arial;
  cursor: pointer;
  border: none;
  border-radius: 0.4vw;
  background: steelblue;
  -webkit-border-radius: 0.4vw;
  -moz-border-radius: 0.4vw;
  -ms-border-radius: 0.4vw;
  -o-border-radius: 0.4vw;
}

button:focus {
  outline: 0;
}

h2 {
  position: relative;
  top: 20vh;
  text-align: center;
  font-family: "MedievalSharp", Arial;
}

#minutes, #seconds{
  font-size: 18vh;
  color: royalblue;
}

.bigger{
  position: relative;
  font-size: 8vh;
  bottom: 5vh;
  color: aliceblue;
}

.button{
  box-shadow: 0 0.9vw white;
}

.button:hover {
  background-color: hotpink;
}
  
.button:active {
  background-color: hotpink;
  box-shadow: 0 0.5vw white;
  transform: translateY(0.4vh);
  -webkit-transform: translateY(0.4vh);
  -moz-transform: translateY(0.4vh);
  -ms-transform: translateY(0.4vh);
  -o-transform: translateY(0.4vh);
}