body {
  background-color: #f5f5f5;
  font-family: Arial, sans-serif;
  font-size: 16px;
  margin: 0;
  padding: 0;
}

.card {
  width: 80%;
  margin: auto;
  background-color: #d3e3ff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  max-height: 75vh;
  overflow-y:auto;
}

.content {
  flex-grow: 1;
  padding: 20px 40px;
  color: #333;
  text-align: center;
}

.content p {
  font-size: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  line-height: 75px;
}

.time {
  font-size: 45px;
  text-align: left;
  font-style: italic;
  padding-bottom: 5px;
}

.bar {
  background-color: #545f71;
  height: 90px;
  margin-top: auto;
  border-radius: 0 0 20px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.author img {
  height: 85px;
  width: 85px;
  border-radius: 50%;
  margin-left: 20px;
  object-fit: cover;
}
.bar-time {
  font-style: italic;
  color: #fff;
  font-size: 32px;
}
.author {
  color: #fff;
  display: flex;
  font-size: 32px;
  align-items: center;
}

.top {
    display: flex;
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
    color: #545f71;
    font-size: 45px;
    font-weight: bold;
}

#svg-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  position: fixed;
  padding: 20px;
}

svg {
    width: 45px;
    height: 45px;
    fill: #545f71;
}

svg:hover {
    cursor: pointer;
}

#previousRequest {
    margin-right: auto;
}

#nextRequest {
    margin-left: auto;
}

#play-pause-container {
    margin: 0 auto;
}

#play {
    margin-right: 100px;
}

.play-active {
    fill: green;
}

@media (max-height: 500px) {

}

@media (max-width: 767px) {
  .card {
    width: 100%;
  }

  .content {
    padding: 40px 20px;
    font-size: 30px;
  }
  
  .author, .bar-time {
	  font-size: 18px;
  }
  
  .author img {
	  height: 60px;
	  width: 60px;
  }
  
  .bar {
	  height: 60px;
  }
}