*{
    margin: 0;
    padding: 0;
    cursor: url(CLTRE.cur), auto;
  }

body {
  font-family: 'Inter', Helvetica, Arial, sans-serif;
  font-weight: normal;
  color: black;
  background: linear-gradient(0deg, rgb(0, 255, 0) 10%, rgb(215, 189, 255) 40%);
  background-color: rgb(215, 189, 255);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center; 
  height:  100%;
  display: flex;
  flex-direction: column;
  align-content: center;
  align-self: center;
  transition: all 0.3s;
  padding-bottom: 0px;
}

/* Gradient animation*/
#container8 {
    color: #D7BDFF;
    background: linear-gradient(
      15deg,
      #00FF00,
      #00FF00,
      #D7BDFF,
      #D7BDFF,
      #D7BDFF
    );
    background-size: 200% 300%;
    animation: backgroundChange7 10s ease infinite;
  }
  
  @keyframes backgroundChange7 {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }  

/* Estilo imagen que sigue al cursor */
#img {
  width: 47px;
  margin: 10px 20px 10px 35px;
  position: absolute;
  transition: all 0.15s ease;
}

/* Estilo header */
header{
  z-index: 1;
  background-color: rgba(red, green, blue, 0);
  font-family: "Inter", Helvetica, Arial, sans-serif;
  font-size: 20px;
  width: 100%;
  top: 0;
  position: fixed;
  height: auto;
}

.main-header {
    background-color: rgba(red, green, blue, 0);
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    text-decoration: none;
}	

/* Navegacion barra menu */
.logo-header {
    float: left;
    width: auto;
    border: none;
    display: block;
    margin: 8px 10px 10px 30px;
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-size: 45px;
    cursor: pointer;
}
.logo-header:hover {
  animation: rotate360 1.5s linear infinite;
  animation-play-state: running;
}

.button-header {
    display: flex;
    float: right;
    border-radius: 50px;
    border: 2px solid rgb(255, 255, 255);
    background-color: rgb(255, 255, 255);
    padding: 2px;
    width: auto;
    margin: 16px 30px 10px 10px;
    text-decoration: none;
    color: black;
    font-size: 27px;
    background-color: rgba(red, green, blue, 0);
    cursor: pointer;
}
.button-header:hover {
  animation: rotate360 1.5s linear infinite;
  animation-play-state: running;
}

/* keyframes animation */
@keyframes rotate360 {                        
  to { transform: rotateY(360deg); }           
}

/* Estilo contenido */
.about {
    font-family: "Inter", Helvetica, Arial, sans-serif;
    margin: 30px 10px 10px 10px;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
  }

  h1 {
    text-align: left;
    color: black;
    text-rendering: auto;
    font-size: xx-large;
    font-family: "Inter", Helvetica, Arial, sans-serif;
    font-weight: normal;
    /* text-decoration:underline wavy; */
  }

  em {
    font-family: "Inter", Helvetica, Arial, sans-serif;
    font-weight: normal;
    font-style: italic;
  }

  .link-contact {
    color: black;
    cursor: pointer;
  }

  .text-about {
    text-align: left;
    color: black;
    margin: 30px;
    padding: 30px;
    text-decoration: none;
    word-wrap: break-word;
    text-rendering: auto;
    hyphens: auto;
    width: 350px;
    aspect-ratio: 1;
    font-size: large;
  }

  .text-contact {
    text-align: left;
    color: black;
    margin: 30px;
    padding: 30px;
    text-decoration: none;
    word-wrap: break-word;
    text-rendering: auto;
    hyphens: auto;
    width: 350px;
    aspect-ratio: 1;
    font-size: large;
  }

/* Estilo footer */
footer{
    z-index: 1;
    background-color: rgba(red, green, blue, 0);
    font-family: "Inter", Helvetica, Arial, sans-serif;
    width: 100%;
    height: auto;
    bottom: 5px;
    position: auto;
    margin: 30px 0px 0px 0px;
  }	

.text-footer {
  font-size: 10px;
  color: rgb(100, 100, 100);
  float: left;
  width: auto;
  height: auto;
  border: none;
  display: block;
  margin: 50px 30px 10px 30px;
  text-decoration: none;
}

#behance-footer {
    color: rgb(100, 100, 100);
}



  