html,
body {
  background-color: #8bc6ec;
  background-image: linear-gradient(135deg, #8bc6ec 0%, #9599e2 100%);
  background-size: cover;
  height: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
  height: 100%;
  margin: 0;
  overflow: hidden;
  font-family: sans-serif, Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
  background-position: center;
  font-size: larger;
  height: 100%;
}

.main {
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}
#content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

audio {
  margin: 15px 5px;
  max-width: 300px;
}
h2 {
  padding-top: 60px;
  color: white;
}

.topleft {
  position: absolute;
  top: 8px;
  left: 16px;
  font-size: 18px;
}

.statusText {
  background-color: #1c87c9;
  -webkit-border-radius: 60px;
  border-radius: 10px;
  border: none;
  color: #eeeeee;
  font-family: sans-serif;
  font-size: 15px;
  padding: 5px 5px;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  user-select: none;
}
@keyframes glowing {
  0% {
    background-color: #8b0000;
    box-shadow: 0 0 3px #8b0000;
  }
  50% {
    background-color: #ff0000d5;
    box-shadow: 0 0 15px #ff0000;
  }
  100% {
    background-color: #8b0000;
    box-shadow: 0 0 3px #8b0000;
  }
}
.statusText {
  animation: glowing 3500ms infinite;
}
.statusTime {
  background-color: #5f39a1;
  -webkit-border-radius: 60px;
  border-radius: 10px;
  border: none;
  color: #eeeeee;
  font-family: sans-serif;
  font-size: 15px;
  padding: 5px 5px;
}
@media screen and (min-width: 900px) {
  audio {
    min-width: 500px;
  }
}
