@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;500&display=swap");

:root {
  --work: #ff5959;
  --shortbreak: #088a8a;
  --long-break: #676fa3;
}

body {
  background-color: var(--work);
}

.timer-container {
  margin: auto;
  width: fit-content;
  text-align: center;
  backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, 0.15);
  margin-top: 45px;
  padding: 30px;
  border-radius: 4px;
  line-height: 80px;
  width: 80%;
}

#heading,
.timer {
  font-family: "Open Sans", sans-serif;
  color: white;
}

#heading {
  font-size: 35px;
}

.timer {
  font-size: 100px;
}

.button-passive {
  padding: 15px 25px;
  text-align: center;
  cursor: pointer;
  outline: none;
  font-family: "Open Sans", sans-serif;
  font-size: 30px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 9px #999;
  width: 150px;
}

.button-active {
  box-shadow: 0 0;
  transform: translateY(4px);
}

.footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  font-family: "Open Sans", sans-serif;
  color: #f5f5f5;
  background-color: black;
  padding: 10px 0px;
  font-size: min(2vw, 15px);
  position: fixed;
  left: 0px;
  bottom: 0px;
  width: 100%;
}
