@import url('https://fonts.googleapis.com/css2?family=Kalam&display=swap');

/* Some positioning and ratios */
.sticky-containerpostit {
  max-width: 100%;
  position: relative;
 
}

.sticky-outer {
  display: flex;
  padding-top: 92.5925926%;
  position: relative;
    background-color: transparent;
  width: 100%;
}

.sticky {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 90%;
  width: 90%;
  
}

/* Shadow behind the sticky note */
.sticky:before {
  box-shadow: -2px 2px 15px 0 rgba(0, 0, 0, 0.5);
  background-color: rgba(0, 0, 0, 0.25);
  content: '';
  width: 90%;
  left: 5px;
  height: 75%;
  position: absolute;
  top: 30%;
}

/* The sticky note itself */
.sticky-content {
  background: linear-gradient(
    180deg,
    rgb(254, 255, 187) 0%,
    rgb(248, 255, 187) 12%,
    rgb(241, 240, 170) 75%,
    rgb(244, 241, 195) 100%
  );
  width: 100%;
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Kalam', cursive;
  font-size: 6vh;

  clip-path: url(#stickyClip);
}


/* Position the sticky nicely, so it looks better */

.containerpostit-inner {
  z-index: 10000;
  height: 25vh;
  width: 13vw;
  float: left;
  position: flex;
  margin: 1px; 


  
}


/* Add responsiveness 
@media screen and (min-width: 640px) {
  .sticky-content {
    font-size: 1.5rem;
  }
  .containerpostit-inner {
    width: 50%;
  }
}

@media screen and (min-width: 768px) {
  .sticky-content {
    font-size: 1.5rem;
  }
  .containerpostit-inner {
    width: 50%;
  }
}

@media screen and (min-width: 1024px) {
  .sticky-content {
    font-size: 1.875rem;
  }
  .containerpostit-inner {
    width: 25%;
  }
}*/
.containerpostit {
  position: absolute;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(40vh, 1fr));
  grid-gap: 16px;
  justify-items: center;
  width: 90%;
  margin-left: 5%;
  height: 50%;
  bottom: 0px;
  top: 45%;
  align-items: center;
  z-index: 20000;
 
 
 
}

.postit {  
    width: 40%;
    min-width: 150px;
    height:95%;   
    top: 0;
    margin-left: 1%;
    margin-right: 1%;
    margin-top: 2%;
    
    background-repeat: no-repeat;background-size:contain;
    }
.postitazul{background-image: url('/img/postit_azul.png');}
.postitrosa{background-image: url('/img/postit_rosa.png');}
.postitamarillo{background-image: url('/img/postit_amarillo.png');}
.postitverde{background-image: url('/img/postit_verde.png');}
.postitnaranja{background-image: url('/img/postit_naranja.png');}
.postitrojo{background-image: url('/img/postit_rojo.png');}
.postitblanco{background-image: url('/img/postit_blanco.png');}


.grado{
  position: relative;
  transform: translate(0%, -50%);
  vertical-align: center;
  top: 50%;  
  font-family: Cream-Cake;
  font-size: xx-large;
  align-items: center;
  text-align: center;


}
