h1 {
  font-size: 3rem;
  color: #473e3e;
}

ol {
  list-style: none;
  padding: 0;
}
ol li {
  width: 25rem;
  background-color: #11BFCA;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  margin: 0.5rem auto;
  box-shadow: 0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.2509803922);
}
ol li h3 {
  color: #4e0d05;
  font-family: "Oswald", sans-serif;
}
ol li p {
  color: #471d16;
  margin: 0.75rem;
}

.important {
  background-color: #df6a68;
}

#today {
  list-style: none;
  margin: 2rem;
}
#today a {
  padding: 1rem 2rem;
  background-color: #CA1C11;
  color: #E7F8F9;
  font-size: 1.25rem;
  border-radius: 0.5rem;
  text-decoration: none;
}
#today:hover {
  animation: heartbeat 1.5s ease-in-out infinite both;
}

ul {
  list-style: inside square;
  padding: 0;
}

@keyframes heartbeat {
  from {
    transform: scale(1);
    transform-origin: center center;
    animation-timing-function: ease-out;
  }
  10% {
    transform: scale(0.92);
    animation-timing-function: ease-in;
  }
  17% {
    transform: scale(0.98);
    animation-timing-function: ease-out;
  }
  33% {
    transform: scale(0.9);
    animation-timing-function: ease-in;
  }
  45% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
}

/*# sourceMappingURL=weekly.css.map */
