@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 16px;
}

body {
  font-family: "Roboto", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
  background-color: #f1f8f3;
  cursor: none;
}

section {
  margin: auto;
  width: 95vw;
  height: 96.25vh;
  display: grid;
  grid-template-columns: repeat(auto-fit, 3rem);
  gap: 0.05rem;
  overflow: hidden;
}

.circle {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #e4f0e6;
  transition: background-color 5s ease;
}

.circle:hover {
  transition-duration: 0s;
}

audio {
  position: fixed;
  bottom: 1rem;
  left: 2.75rem;
}
audio::-webkit-media-controls-panel {
  background-color: #e4f0e6;
}
