@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;
    animation: fadeInAnimation ease 2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    font-family: 'PT Serif', serif;
  }

@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;
  z-index: 1;
}

.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: 484px;
    height: 484px;
}

.image-container>.btn[data-tooltip]:hover::after {
	content: attr(data-tooltip);
  position: relative;
  white-space: nowrap;
  font-family: 'PT Serif';
  font-weight: 500;
  left: -60px;
  bottom: -40px;
  border-radius: 5%;
  background: #FFFFFFbb;
  padding: 5px;
  color: #444444;
  font-size: 16px;
}

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

.btn {
  position: absolute;
  border-radius: 50%;
  appearance: button;
  cursor: pointer;
  text-decoration: none !important;
  background-color: #b184b150;
  transition: background-color 0.4s ease-in-out;
}

.btn:is(:hover, :focus) {
    background-color: #b184b190;
}

#cap1 {
  height: 19%;
  width: 19%;
  left: 27%;
  top: 34%;
}

#cap2 {
  height: 13%;
  width: 13%;
  left: 34%;
  top: 64%;
}

#cap3 {
  height: 14%;
  width: 14%;
  left: 57%;
  top: 42%;
}

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