
article {
    display: grid;
    grid-template-columns: repeat(1, 1fr); 
    
	
}
@media all and (min-width: 110em) {
  body{
    font-size: 100%;
  }
  article {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    
  }

}
table {
    border-collapse: collapse;
    
    
}
tr {
    background-color: rgba(252,245,244,0.6);
}





th {
  padding-top: 0px;
  padding-bottom: 0px;
  text-align: left;
  padding-left: 1em;
  background-image: linear-gradient(to right, #c1907b 0%, transparent 100%);
  color: black;
  
}
.entry_div {
    margin-right: 1em;
    margin-bottom: 2em;
    
    box-shadow: 2px 2px 2px;
    transition: border 0.5s;
    border: 3px solid #fcf5e5;

}
.entry_div tr:hover {
        background-color: rgba(255,255,255,1);;
}
.entry_div:hover {
    
    border: 3px solid #c2917c;
}
.ueberschrift {
    margin: auto;
   
    text-align: center;
    text-decoration: underline;
    
}
