@import url('https://fonts.googleapis.com/css2?family=Gloria+Hallelujah&display=swap');

h1,h2,h3 {
    color: var(--accent1);
    font-family: 'Gloria Hallelujah', cursive;
    text-align:left;	
}

// Besser: fonts selbst hosten:

@font-face {
    font-family: 'Cantarell';
    font-style: normal;
    font-weight: 700;
    src: local('Cantarell Bold'), local('Cantarell-Bold'), url(../font/Cantarell-Bold.ttf) format('truetype');
}



table {
  border-collapse: separate;
  border-spacing: 0.2em;
}
  
th, td {
  padding: .2em .5em;
  border-radius: .1em; 
  text-align: left;  
}  

thead th {
  background-color: #ffebe6;
  color: #c32e04;
}

td {
  font-style: italic;
  text-align: left;
  box-shadow: inset 1px 3px 5px -3px rgb(0 0 0 / .5);
}   

td:empty{
  box-shadow: none;
}