:root {
  /*here I am defining some variables*/
  --iconmargin: 5px;
}


.setheader{
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.download{
  /* text */
  color: var(--mywhite);
  /* font-size: 18px; - font size for download link */
  font-size: 15px;   /* font size for right click hint */
  font-weight: bold; /*font weight for right click hint */
  text-align: right; /*text align for right click hint */
  
  /* backing */
  background-color: var(--lighttone);
  /*border: solid var(--midtone);
  border-width: 0 5px 5px 0;*/
  border-radius: 24px;
  padding: 8px 18px 8px 38px;
  margin-left: 5px;
  box-shadow: 3px 3px var(--midtone);
}

.icongallery{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
}

.icon{
  border-radius: 12px;
  margin: var(--iconmargin);
  /*border: solid var(--lighttone) 3px;*/
}

.suggestedcolors{
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
}

.suggestion{
  height: 60px;
  min-width: 80px;
  flex-grow: 1;
  margin: var(--iconmargin);
  border-radius: 12px;
  
  display: flex;
  align-items: flex-end;
}

.suggesttext{
  color: var(--mywhite);
  font-size: 15px;
  text-align: center;
  width: 100%;
  padding: 2px;
  margin: 0;
  border-radius: 0 0 12px 12px;
  background: var(--darktone);
}

#kirby{
  background-image: url('Freebies/KirbyIcons72px/kirby_left.png');
  background-repeat: no-repeat;
  background-size: 55px;
  background-position: 0 100%;
}

.kirby:nth-of-type(4n+1){
  background-color: #1580ca;
}

.kirby:nth-of-type(4n+2){
  background-color: #8ad6ff;
}

.kirby:nth-of-type(4n+3){
  background-color: #f6984a;
}

.kirby:nth-of-type(4n+4){
  background-color: #fbdc69;
}

#c-1580ca{
  background: #1580ca;
}
#c-8ad6ff{
  background: #8ad6ff;
}
#c-f6984a{
  background: #f6984a;
}
#c-fbdc69{
  background: #fbdc69;
}

/* mobile formatting section */
                @media screen and (max-width: 640px){ /*with just making the screen wider and narrower, there will be a horizontal scroll bar appear if it's not about 20px wider cutoff than my header width*/
                  
                  .icon{
                    width: 54px;
                    border-radius: 9px;
                  }
                  
                  .suggestion{
                    border-radius: 9px;
                  }
                  
                  .suggesttext{
                    border-radius: 0 0 9px 9px;
                  }
                }