:root{
  --bg: #edf6ff;
}
body {
  margin: 0;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-size: x-large;
  height: 100vh;
  background-color: var(--bg);
}
.container {
  display: grid;
  padding: 1rem;
}
.row {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
}
.card {
  margin: 0.5rem;
  height: 100%;
  max-height: 160px;
  width: 100%;
  max-width: 155px;
  border-radius: 1rem;
  padding: 1.5rem;
  display: grid;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.card header,
.card footer {
  position: absolute;
  width: 100%;
  padding: 0.5rem 0;
  background-color: #33333361;
  color: white;
  font-size: 1rem;
  border-radius: 1rem 1rem 0 0;
  top: 0;
  left: 0;
}
.card footer {
  top: auto;
  bottom: 0;
  border-radius: 0 0 1rem 1rem;
}
.very-urgent {
  background-color: #f44336;
  color: white;
}
.urgent {
  background-color: #ffeb3b;
  color: black;
}
.slightly-urgent {
  background-color: #8bc34a;
  color: white;
}
.not-urgent {
  background-color: #1576c7;
  color: white;
}
#timer {
  font-size: large;
  color: #9e9e9e;
}
.text-group {
  padding: 1rem;
}
