/* Css INDEX PAGE*/

/* root */


:root {
    /* COLORS BASIC*/
    --color1a: hsl(0, 0%, 100%);  /* root */
    --color2a: hsl(45, 80%, 50%); /* analogous */ 
    --color3a: hsl(90, 80%, 50%); /* square */ /* analogous */ 
    --color4a: hsl(112, 80%, 50%); /* triad */
    --color5a: hsl(135, 80%, 50%); /* split */   
    --color6a: hsl(180, 80%, 50%); /* complementary */ /* square */
    --color7a: hsl(225, 80%, 50%); /* split */ /* square */
    --color8a: hsl(247, 80%, 50%); /* triad */  
    --color9a: hsl(270, 80%, 50%); /* square */ /* analogous */ 
    --color10a: hsl(315, 80%, 50%); /* analogous */
    /* COLORS MUTED*/
    --color1b: hsl(0, 30%, 40%);  /* root */
    --color2b: hsl(60, 30%, 40%); /* analogous */ 
    --color3b: hsl(90, 30%, 40%); /* square */ /* analogous */ 
    --color4b: hsl(112, 30%, 40%); /* triad */
    --color5b: hsl(135, 30%, 40%); /* split */   
    --color6b: hsl(180, 30%, 40%); /* complementary */ /* square */
    --color7b: hsl(225, 30%, 40%); /* split */ /* square */
    --color8b: hsl(247, 30%, 40%); /* triad */  
    --color9b: hsl(270, 30%, 40%); /* square */ /* analogous */ 
    --color10b: hsl(315, 30%, 40%); /* analogous */  
    /* COLORS DARK */
    --color1c: hsl(0, 100%, 30%);  /* root */
    --color2c: hsl(45, 55%, 30%); /* analogous */ 
    --color3c: hsl(90, 100%, 30%); /* square */ /* analogous */ 
    --color4c: hsl(112, 100%, 30%); /* triad */
    --color5c: hsl(135, 100%, 30%); /* split */   
    --color6c: hsl(180, 100%, 30%); /* complementary */ /* square */
    --color7c: hsl(225, 100%, 30%); /* split */ /* square */
    --color8c: hsl(247, 100%, 30%); /* triad */  
    --color9c: hsl(270, 100%, 30%); /* square */ /* analogous */ 
    --color10c: hsl(315, 100%, 30%);  /* analogous */
    /* COLORS LIGHT*/
    --color1d: hsl(0, 80%, 70%);  /* root */
    --color2d: hsl(45, 55%, 70%); /* analogous */ 
    --color3d: hsl(90, 80%, 70%); /* square */ /* analogous */ 
    --color4d: hsl(112, 80%, 70%); /* triad */
    --color5d: hsl(135, 80%, 70%); /* split */   
    --color6d: hsl(180, 80%, 70%); /* complementary */ /* square */
    --color7d: hsl(225, 80%, 70%); /* split */ /* square */
    --color8d: hsl(247, 80%, 70%); /* triad */  
    --color9d: hsl(270, 80%, 70%); /* square */ /* analogous */ 
    --color10d: hsl(315, 80%, 70%);  /* analogous */        
}


/* STRUCTURE */

html { 
    box-sizing: border-box;
}

.addinlineblock {
    display: inline-block; 
}   

.addmargin1 {
    margin: 0vw 5vw;
}

.removemargin {
    margin-top: -1px;
    margin-bottom: -1px;
}

.addmargin2 {
    margin: 2vw 2vw;
}     

.addpadding {    
    padding-top: 2vw;
    padding-bottom: 2vw;
}

.noborder {
    border:  0;
}

.addflexcenter {  
    display: flex;
    justify-content: space-evenly;
}

.limitw1 {
    width: 50vw;
}

.limitw2 {
    width: 66vw;
}

/* VIDEO PLAYER */

.video-container {
      max-width: 854px;
      width: 100%;
      margin: 20px auto;
    }

    
    .video-container video {
      width: 100%;
      height: auto;
    }


/* CENTER */

.centertxt {
    text-align: center;
}

.center1 {
    display: block;
    margin: 8px auto;
}


/* TEXT STYLE */

.font1 {
    font-family: Arial, Helvetica, sans-serif, sans-serif;
}

.font2 {
    font-family: Cursive, sans-serif;
}

.fontbig {
    font-size: 8rem
}

.fontmed {
    font-size: 4rem
}

.fontsmall {
    font-size: 2rem
}

.fontmicro{
    font-size: 0.7rem
}

.bold {
    font-weight: bold;
}

.underline {
  text-decoration-line: underline;
}

.noitalic {
    font-style: normal;   
}

.nodeco {
    text-decoration: none;
} 

.spacing {
    letter-spacing: 3vw;
}

/* BACKGROUND */

.background1 {
    background-image:url(../IMG/EXTRA/BACKGROUND/bandcamp/background.jpg);
    background-repeat: repeat;
    background-size: 1000%;
    background-position: center;
}

.background2 {
    background: linear-gradient(var(--color1c), var(--color10a), var(--color1c));
    box-shadow: 0 0 24px 0 hsla(0, 100%, 30%, 0.8); 
}

.background3 {             /* TEXTURE FROM THE RED BOX */
    background:  url(../IMG/EXTRA/TEXTURE/paper/texture2.jpg);
    background-size: 50%;
    background-repeat: repeat;
}

/* COLORSTEXT */

.colorfont1 {
    color: var(--color2c) 
}

.colorfont2 {
    color: var(--color9c) 
}

.colorfont3 {
    color: var(--color2d) 
}

.colorfont4 {
    color: var(--color1b) 
}

.colorfont5 {
    color: var(--color4c)
    
    
}

.colorfont6 {
    color: var(--color9a) 
}


/* COLORBORDER */

.colorborder1 {
    height:2px ;
    background-color:var(--color1a); 
}


/* IMG */

.microimg {
    width: 10vw; 
}

.smallimg {
    width: 15vw; 
}

.midimg {
    width:25vw;
    height: 25vw;
}

.bigimg {
    width: 65vw;
}

.customimg {
    width: 75vw;
}

.customimg2 {
    width: 22vw;
}

.customimg3 {
    width: 25px ;
    height: 25px;
}


/* COLORSBG */

.colorbg1 {
    background: var(--color1a);
}

.colorbg2 {
    background: var(--color9c);
}

.colorbg3 {
    background: var(--color1c);
}

/* LINKS */

a {
  color: var(--color4);
}

a:visited {
    color: var(--color1);
}

a:hover {
    color: var(--color5);
}


/* CELPHONE VARIATION */

@media (max-width: 800px){

.addflexcenter {  
    align-items: center;      
}

.smallimg {
    width: 25vw; 
}

.midimg {
    width:50vw;
    height: 50vw;
    padding-top: 1vw;
}


.fontbig {
    font-size: 4rem
}

.fontmed {
    font-size: 2rem
}

.fontsmall {
    font-size: 1rem
}

.fontmicro{
    font-size: 0.5rem
}

.spacing {
    letter-spacing: 0.5vw;
}

}



* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: relative;
  top: 50%;
  width: auto;
  margin-top: -100px;
  padding: 1px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  .left {
    left: 0;
    border-radius: 3px 0 0 3px;
  }


/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #000000;
  font-size: 15px;
  padding: 8px 12px;
  position: relative;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/* Slideshow container2 */
.slideshow-container2 {
    max-width: 1000px;
    position: relative;
    margin: auto;
  }
  
  /* Hide the images by default2 */
  .mySlides2 {
    display: none;
  }
  
  /* Next & previous buttons2 */
  .prev2, .next2 {
    cursor: pointer;
    position: relative;
    top: 50%;
    width: auto;
    margin-top: -100px;
    padding: 1px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }
  
  /* Position the "next button" to the right */
  .next2 {
      right: 0;
      border-radius: 3px 0 0 3px;
    }
    .left2 {
      left: 0;
      border-radius: 3px 0 0 3px;
    }
  
  
  /* On hover, add a black background color with a little bit see-through */
  .prev2:hover, .next2:hover {
    background-color: rgba(0,0,0,0.8);
  }
  
  /* Caption text */
  .text2 {
    color: #000000;
    font-size: 15px;
    padding: 8px 12px;
    position: relative;
    bottom: 8px;
    width: 100%;
    text-align: center;
  }
  
  /* Number text (1/3 etc) */
  .numbertext2 {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  
  /* The dots/bullets/indicators */
  .dot2 {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  .active, .dot:hover {
    background-color: #717171;
  }
  
  /* Fading animation */
  .fade2 {
    animation-name: fade;
    animation-duration: 1.5s;
  }