@import url(https://fonts.googleapis.com/css?family=Shadows+Into+Light);

@-webkit-keyframes throb {
  0% {
    -webkit-transform: scale(0.7);
  }

  35% {
    -webkit-transform: scale(0.9);
  }

  85% {
    -webkit-transform: scale(0.7);
  }
}

@keyframes throb {
  0% {
    transform: scale(0.7);
  }

  35% {
    transform: scale(0.9);
  }

  85% {
    transform: scale(0.7);
  }
}

html {
  display: table;
  width: 100%;
  height: 100vmin;
  table-layout: fixed;
}

body {
  display: table-cell;
  vertical-align: middle;
  font-family: 'Shadows Into Light';
  color: #111;
  background-color: #ffbecb;
}

.wrapper {
  width: 90vmin;
  height: 90vmin;
  position: relative;
  margin: 5vmin auto;
  transform: scale(0.7);
}

div.throb {
  -webkit-animation: throb 0.8s infinite;
  animation: throb 0.8s infinite;
  animation-delay: 0.8s;
}

input[type="checkbox"] {
  display: none;
}

input[type="checkbox"]+label {
  width: 30vmin;
  height: 30vmin;
  line-height: 30vmin;
  display: inline-block;
  position: absolute;
  font-size: 30vmin;
  text-align: center;
  transition: all 1s ease;
}

label {
  text-shadow: 3vmin 3vmin 10vmin rgba(0, 0, 0, 0.5);
}

label:hover {
  color: #c32a2a;
  cursor: pointer;
}

#ck1+label,
#ck2+label {
  border-radius: 50%;
  top: 0;
}

#ck1:checked+label,
#ck2:checked+label,
#ck3:checked+label {
  background: #c32a2a;
  font-size: 0;
  transition: all 1s ease;
}

#ck1+label {
  left: 0;
}

#ck2+label {
  right: 10vmin;
}

#ck1:checked+label,
#ck2:checked+label {
  width: 54vmin;
  height: 54vmin;
  border-radius: 50%;
  line-height: 54vmin;
}

#ck1:checked+label {
  background-image: url('foto-1.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#ck2:checked+label {
  background-image: url('foto-2.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#ck3:checked+label {
  background-image: url('foto-3.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#ck2:checked+label {
  right: 0;
}

#ck3+label {
  bottom: 5vmin;
  left: 50%;
  margin: 0 -9vmin;
}

#ck3:checked+label {
  width: 49.5vmin;
  height: 49.5vmin;
  bottom: 17.28vmin;
  left: 29.16vmin;
  transform: rotate(45deg);
  line-height: 4.86vmin;
}

span {
  display: inline-block;
  text-align: left;
  position: absolute;
  bottom: 10vmin;
  left: 20vmin;
  margin-bottom: -3vmin;
  font-size: 4vmin;
  color: #c32a2a;
}

#names {
  display: none;
  font-size: 10vmin;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-bottom: -6vmin;
}

.audio-player {
  margin-top: 4vmin;
  display: flex;
  gap: 3vmin;
  justify-content: center;
}

.audio-player button {
  background: #c32a2a;
  border: none;
  color: #fff;
  padding: 1.2vmin 3.5vmin;
  border-radius: 100vmin;
  font-size: 2vmin;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.audio-player button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.audio-player button:not(:disabled):hover {
  transform: scale(1.05);
}

#hidden-player {
  width: 0;
  height: 0;
  overflow: hidden;
}