.meditation-app-container {
   background: url(images/lillypad.jpg) 0 0 no-repeat;
   background-size: cover;
   background-position: center;
   height: 100vh;
   padding: 2em;
}

.meditation-app-container h2 {
   color: #fff;
}

.meditation-app {
   height: 100%;
   display: flex;
   flex-direction: column;
   justify-content: space-evenly;
   align-items: center;
}

.time-select,
.player-container {
   width: 100%;
   height: 80%;
   flex: 1;
   display: flex;
   flex-direction: column;
   justify-content: space-evenly;
   align-items: center;
}

.player-container {
   position: relative;
}

.player-container svg {
   position: absolute;
   height: 50%;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%) rotate(-90deg);
   pointer-events: none;
}

.time-display {
   position: absolute;
   bottom: 0;
   color: white;
   font-size: 2em;
}

.time-select button {
   color: white;
   width: 100%;
   height: 20%;
   background: none;
   border: 2px solid white;
   cursor: pointer;
   border-radius: 5px;
   font-size: 20px;
   transition: all 0.5s ease;
}

.time-select button:hover {
   color: black;
   background: white;
}

@media (min-width: 800px) {
   .meditation-app {
      flex-direction: row;
   }
   .time-select button {
      width: 50%;
      height: 10%;
   }

   .time-display {
      font-size: 3em;
   }
}
