*{
    margin: 0;
    padding: 0;
    cursor: url(CLTRE.cur), auto;
  }

body {
  font-family: 'Inter', Helvetica, Arial, sans-serif;
  font-weight: normal;
  color: black;
  background-image: url(antoine-de-ligondes-1Ivk03sID4A-unsplash.jpg);
  background-blend-mode: luminosity;
  background-color: rgb(215, 189, 255);
  height:  100%;
  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;
}

/* Estilo imagen que sigue al cursor */
#img {
  width: 50px;
  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(0, 255, 0);
    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(0, 255, 0);
    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 botones menu */
  @keyframes rotate360 {                        
      to { transform: rotateY(360deg); }           
    }

/* Estilo contenido */
.detalle {
    font-family: "Inter", Helvetica, Arial, sans-serif;
    margin: 40px 10px 10px 10px;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    align-content: 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-line: underline;
    text-decoration-color: rgb(0, 255, 0);
  }

  h2 {
    text-align: left;
    color: black;
    text-rendering: auto;
    font-size: x-large;
    font-family: "Inter", Helvetica, Arial, sans-serif;
    font-weight: normal;
    width: fit-content;
    background-color: rgb(215, 189, 255);
    border: 1px solid black;
    padding: 10px;
    border-radius: 10px;
  }

  h3 {
    text-align: left;
    color: black;
    text-rendering: auto;
    font-size: x-large;
    font-family: "Inter", Helvetica, Arial, sans-serif;
    font-weight: normal;
  }

  .link-contact {
    color: black;
    cursor: pointer;
  }

  ul {
    list-style-type: circle;
    margin: 0 0 0 18px;
  }

/*Estilo botones quantity*/
  .counter {
      width: auto;
      align-items: center;
      align-self: center;
      align-content: center;
  }

  .down::before {
    content: "  ";
    padding: 0px 100px;
  }

  .counter input {
      width: 80px;
      border: 1px solid black;
      border-radius: 10px;
      font-size: 20px;
      text-align: center;
      background: whitesmoke;
      color: black;
      outline: 0;
      font-family: 'Inter', Helvetica, Arial, sans-serif;
      font-weight: normal;
    
  }
  .counter span {
      font-size: 25px;
      padding: 0;
      cursor: pointer;
      color: black;
      user-select: none;
      font-family: 'Inter', Helvetica, Arial, sans-serif;
      font-weight: normal;

  }

  @media only screen and (max-width: 575px) {
    .down::before {
        content: "  ";
        padding: 15px 0px 0px 0px;
        display: block;
    }
  }
  
/*Estilo botones quantity*/
.add {
    text-align: center;
    color: black;
    text-rendering: auto;
    font-size: x-large;
    font-family: "Inter", Helvetica, Arial, sans-serif;
    font-weight: normal;
    width: fit-content;
    background-color: rgb(0, 255, 0);
    padding: 10px 130px;
    border-radius: 10px;
    border: 1px solid black;
    cursor: pointer;
  }

  @media only screen and (max-width: 584px) {
    .add {
        padding: 10px 20px;
      }
  }
  
/*Estilo botones read more y read less*/
  #more {
    display: none;
  }

  #myBtn {
    background-color: rgb(215, 189, 255);
    border-radius: 10px;
    margin: 5px 5px 5px 0px;
    padding: 2px 8px 2px 8px;
    color: black;
    text-decoration-line: underline;
    border-color: none;
  }

/*Estilo del zoom mediante lupa*/
  * {box-sizing: border-box;}

#myimage {
    width: 400px;
    
}

.img-magnifier-container {
  position: relative;
  width: 390px;
  height: 390px;
  margin: 30px 50px 80px 30px;
}

.img-magnifier-glass {
  position: absolute;
  border: 1px solid #000;
  border-radius: 50%;
  cursor: none;
  /*Set the size of the magnifier glass:*/
  width: 150px;
  height: 150px;
  background-color: rgb(0, 255, 0);
}

/*Estilo texto*/
  .description {
    text-align: left;
    color: black;
    margin: 30px 30px 30px 50px;
    padding: 30px;
    text-decoration: none;
    word-wrap: break-word;
    text-rendering: auto;
    hyphens: auto;
    width: 500px;
    aspect-ratio: 1;
    font-size: large;
    z-index: 1;
  }

/* 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);
}