@import url('https://fonts.googleapis.com/css?family=Archivo:700|Bitter:400');
*{
--text: #392614;
--background: #f8f1e1;

--zolty: #efa410;
--drugi-background: #ffe9cc;
--accent: #944f08;
--backgroundAktualnosci2: #ffe2bc;
--backgroundAktualnosci: #ffc77b;
}

.Wszystkie_kola {
display: grid;
  grid-auto-flow: row;         
  grid-auto-columns: 100px;          
  grid-template-columns: repeat(6, calc(100%/6 - 17px)); 

  gap: 20px;                     
  justify-content: start;        
  align-items: start;
  margin: 0 35px;
}

.kola {
    text-align: center;
    border: solid 4px var(--accent);
    background-color: var(--backgroundAktualnosci);
    padding: 15px;
    display: block;
    
}
.Wszystkie_kola a {
    text-decoration: none;
}
.Wszystkie_kola a:hover {
    background-color: var(--accent);
    color: var(--backgroundAktualnosci);
    display: block;
}