*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: cursive;
    font-size: 1.15em;
    color: white;
}
@property --＠color-1 {
    syntax: "<color>";
    inherits: false;
    initial-value: hsl(98 100% 62%);
  }
  @property --＠color-2 {
    syntax: "<color>";
    inherits: false;
    initial-value: hsl(204 100% 59%);
  }
  @keyframes gradient-change {
    to {
      --＠color-1: hsl(210 100% 59%);
      --＠color-2: hsl(310 100% 59%);
    }
  }
  h1 {  /*lo aplicado*/
    animation: gradient-change 2s linear infinite alternate; 
    background: linear-gradient(
      to right in oklch, 
      var(--＠color-1), 
      var(--＠color-2)
    );
    /*no quites esto*/
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
p:hover{/*lo aplicado*/
    animation: gradient-change 2s linear infinite alternate; 
    background: linear-gradient(
      to right in oklch, 
      var(--＠color-1), 
      var(--＠color-2)
    );
    /*no quites esto*/
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
body{
    scrollbar-width: none;
    background-color: rgb(15,15,15);
    height: 100vh;
}
.borde{
    border: 1vh solid white;
    border-radius: 6vh;
}
.alineador1{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5vh;
}
.alineador2{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5vh;
}
.fondo{
    background-color: rgb(25,25,25);
}
header section{
    width: 50%;
    height: 15vh;
    gap:8vh;
}
main section{
    width: 80%;
    height: 50vh;
    margin: 7vh;
    padding: 5vh;
}
footer{
    padding: 10vh;
    height: 20vh;
}
main article{
    height: 100%;
    gap: 5vh;
}   
main div{
    padding: 0vh;
    width: 30%;
    height: 70%;
}
.imagen{
    width: 100%;
    height: 100%;
    border-radius: 5vh;
}
div:hover{
    animation: agrandar 0.3s linear;
}
h1:hover{
    animation: rotar 1s linear;
}
@keyframes agrandar{
    0%{
        transform: scale(1.15);
    }
    50%{
        transform: scale(0.85);
    }
    100%{
        transform: scale(1);
    }
}
@keyframes rotar{
    0%{
        transform: rotate(0);
    }
    25%{
        transform: rotate(360deg);
    }
    100%{
        transform: rotate(720deg);
    }
}