body {
  font-family: Lato, sans-serif;
  justify-content: center;
  align-items: center;
  color: #4f546c;
  font-size: 0.9rem;
  background-color: white;
}

table {
  border-collapse: collapse;
  box-shadow: 20px 20px 20px 5px #a7bad3;
  background-color: white;
  text-align: left;
}
table th{
    background-color: #eee6d3;
    color: black;
    padding: 0.5rem 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    font-size: 0.6rem;
    font-weight: 900;
  }

table td {    
    padding: 0.5rem 1rem;
  }

  
table tr:nth-child(even) {
    background-color:#fffdf6;
  }

table tr:nth-child(odd) {
    background-color:white;
  }

table, th, td {
  border: 2px solid white;
  border-collapse: collapse;
}

section {
  float: center;
  width: 100%;
}
aside {
  float: right;
  margin: 0 1.5%;
  width: 30%;
}



#loader { 
border: 12px solid #f3f3f3; 
border-radius: 75%; 
border-top: 12px solid #444444; 
width: 70px; 
height: 70px; 
animation: spin 1.2s linear infinite;
} 
@keyframes spin { 
  % {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
  100% { 
    transform: rotate(720deg); 
  } 

} 
.centerspinner { 
position: absolute; 
top: 0; 
bottom: 0; 
left: 0; 
right: 0; 
margin: auto; 
}

.blink {
    animation: blinker 1.5s linear infinite;
    color: red;
    font-family: sans-serif;
}
@keyframes blinker {
    50% {
        opacity: 0;
    }
}