* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
}

body {
  background-color: aquamarine;
  height: max-content;
}

.botonera { 
  background-color: darkgreen;
  width: 100%;
  height: 100%;
  padding-top: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  padding-bottom: 1rem;
}

h1 {
  font-size: 100px;
  font-family: serif;
  color: black;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 20vh;
}

.presentacion{
 display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around; 
  width: 80%;
  gap: 15px;
  margin: auto;
}
.parrafopresentacion {
  font-size: 5vmin;
  text-align: center;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif ;
}

.imagentobias {
  display: flex;
  height: 50vmin;
}

.button {
    font-size: 16px;
    font-weight: 700;
    color: #ff7576;
    background-color: #2B3044;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 12px 24px;
    position: relative;
    line-height: 24px;
    border-radius: 9px;
    box-shadow: 0px 1px 2px #2B3044,
      0px 4px 16px #2B3044;
    transform-style: preserve-3d;
    transform: scale(var(--s, 1)) perspective(600px)
      rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
    perspective: 600px;
    transition: transform 0.1s;
  }
  
  .sp {
    background: linear-gradient(
        90deg,
        #866ee7,
        #ea60da,
        #ed8f57,
        #fbd41d,
        #2cca91
      );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
  }
  
  .rainbow-hover:active {
    transition: 0.3s;
    transform: scale(0.93);
  }