@import url('https://fonts.googleapis.com/css2?family=Benne&family=Indie+Flower&family=Kirang+Haerang&family=Shadows+Into+Light&display=swap');

*{

    margin: 0;
    padding: 0;
}

body {
background-color: #618685;
  margin: 0;
  }

  #titulo h1{
    display: flex;
    justify-content: center;
    background-color: #618685;
    font-family: 'Benne', serif;
    text-decoration: underline;
  }

  #contenedor{
      display:flex;
      justify-content: center;
      align-content: center;
  }

.botones{
display: flex;
align-items: center;
   justify-content: center;
    background-color: #fefbd8;
    margin: 0;
    border: 2px solid white;
    padding: 10px;
    width: 12vw;
    height: 9vw;
    font-family:'Indie Flower', cursive;
    font-weight: bolder;
    transition: ease-out 1s;
    color: black;
    font-size: 3vw;
    border-radius: 15px;
margin-top: 4vw;  
margin-right: 1vw;
margin-left: 1vw;
}
  
  .botones:hover{
    border: 2px solid #000000;
    box-shadow: 25px 25px 100px #fefbd8 ;
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
  }

a{
text-decoration: none;  
}

  #division2{
    width: 100vw;
    height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  }

#perfil{
  width: 80vw;
  height: 80vh;
  font-size: 2vw;
  background-color: #fefbd8;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  font-family: 'Benne', serif;
}

   #division3{
    width: 100vw;
    height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  }

#Illia{
  width: 80vw;
  height: 80vh;
  font-size: 1.3vw;
  background-color: #fefbd8;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  font-family: 'Benne', serif;
}

#division4{
    width: 90vw;
    height: 90vw;
  display: flex;
  justify-content: center;
  align-items: center;
  }

.galeria {
  height: calc( 300px + 3em);
  width: 260px;
  margin:0em auto;
  border: 0px solid #555;
  position: relative;  
}

.galeria img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 3s;
}

.galeria input[type=radio] {
  position: relative;
  bottom: calc(-350px - 1.5em);
  left: .5em;
}

.galeria input[type=radio]:nth-of-type(1):checked ~ img:nth-of-type(1) {
  opacity: 1;
}

.galeria input[type=radio]:nth-of-type(2):checked ~ img:nth-of-type(2) {
  opacity: 1;
}

.galeria input[type=radio]:nth-of-type(3):checked ~ img:nth-of-type(3) {
  opacity: 1;
}

.galeria input[type=radio]:nth-of-type(4):checked ~ img:nth-of-type(4) {
  opacity: 1;
}

.galeria input[type=radio]:nth-of-type(5):checked ~ img:nth-of-type(5) {
  opacity: 1;
}

.galeria input[type=radio]:nth-of-type(6):checked ~ img:nth-of-type(6) {
  opacity: 1;
}

.galeria input[type=radio]:nth-of-type(7):checked ~ img:nth-of-type(7) {
  opacity: 1;
}

.galeria input[type=radio]:nth-of-type(8):checked ~ img:nth-of-type(8) {
  opacity: 1;
}

#division5{
    width: 100vw;
    height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  }

#Futuro{
  width: 80vw;
  height: 80vh;
  font-size: 1.5vw;
  background-color: #fefbd8;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  font-family: 'Benne', serif;
}


#division6{
    width: 100vw;
    height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  }

#Hobbies{
  width: 80vw;
  height: 80vh;
  font-size: 2vw;
  background-color: #fefbd8;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  font-family: 'Benne', serif;
}

.btn-flotante {
	font-size: 1.5vw; 
	text-transform: uppercase; 
  font-family: 'Benne', serif;
	font-weight: bold; 
	color: black; 
	border-radius: 5px; 
	letter-spacing: 2px; 
	background-color: #fefbd8; 
	padding: 18px 30px; 
	position: fixed;
	bottom: 40px;
	right: 40px;
	transition: all 300ms ease 0ms;
	box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
	z-index: 99;
}
.btn-flotante:hover {
	background-color: #fefbd8; /* Color de fondo al pasar el cursor */
	box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.3);
	transform: translateY(-7px);
}
@media only screen and (max-width: 600px) {
 	.btn-flotante {
		font-size: 14px;
		padding: 12px 20px;
		bottom: 20px;
		right: 20px;
	}
}