@import url('https://fonts.googleapis.com/css2?family=PT+Serif&display=swap');

*, *::after, *::before {
    border: 0;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root {
    --hue: 65;
    --bkg: var(--hue) 50% 96%;
    --text: var(--hue) 70% 9%;
    --dark: var(--hue) 70% 3%;
    font-family: 'PT Serif', serif;
  }
  
  body {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    display: grid;
    place-items: center;
    font-family: 'PT Serif', serif;
    animation: fadeInAnimation ease 2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
  }

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.wrapper {
    padding: 0;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
  }

.regreso {
  position: fixed;
  cursor: pointer;
  background: none;
  transform: scale(0.5);
  right: -5px;
  top: -10px;
}

.control {
  position: fixed;
  cursor: pointer;
  background: none;
  transform: scale(0.15);
  z-index: 2;
  right: -17em;
  bottom: -10em;
}

.image-container {
    place-items: center;
    position: relative;
    margin: auto;
    padding: 0;
    width: 692px;
    height: 692px;
}

.image-container>a[data-tooltip]:hover::after {
	content: attr(data-tooltip);
  position: relative;
  white-space: nowrap;
  font-family: 'PT Serif';
  font-weight: 500;
  left: -40px;
  top: -20px;
  border-radius: 5%;
  background: hsl(65deg 100% 95% / .9);
  padding: 5px;
  color: #444444;
  font-size: 16px;
}

.portada {
    position: absolute;
    display: block;
    margin: auto;
    left: 0;
    right: 0;
    width: 89.59%;
    height: 100%;
    max-width: 100%;
    }

  .btn {
    position: absolute;
    border-radius: 50%;
    appearance: button;
    cursor: pointer;
    text-decoration: none !important;
    background-color: #d1435b20;
    transition: background-color 0.4s ease-in-out;
  }
  
  .btn:is(:hover, :focus) {
      background-color: #d1435b50;
  }

#but1 {
    height: 9%;
    width: 9%;
    left: 17%;
    top: 5%;
}

#but2 {
    height: 10%;
    width: 10%;
    left: 48%;
    top: 8%;
}

#but3 {
    height: 10%;
    width: 10%;
    left: 79%;
    top: 10%;
}

#but4 {
    height: 12.3%;
    width: 12.3%;
    left: 19.7%;
    top: 44%;
}

#but5 {
    height: 8.5%;
    width: 8.5%;
    left: 48.5%;
    top: 36.8%;
}

#but6 {
    height: 11.5%;
    width: 11.5%;
    left: 76.5%;
    top: 45.2%;
}

#but7 {
    height: 13%;
    width: 13%;
    left: 12%;
    top: 68%;
}

#but8 {
    height: 8.5%;
    width: 8.5%;
    left: 48%;
    top: 65%;
}

#but9 {
    height: 10%;
    width: 10%;
    left: 77.5%;
    top: 65.4%;
}

@media only screen and (min-width: 1400px) and (min-height: 850px) {
  .image-container {
    width: 850px;
    height: 850px;
  }
}