/* style.css */
*{
    margin: 1;
    padding: 50;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    Color: black;
}
h2 {
    background-color: crimson;
}
body{
    height: 80vh;
    background-color: rgb(180, 168, 153);
    display: flex;
    justify-content: center;
    align-items: stretch;
}
table{
    font-size: 23px;
    border: 2px solid black;
    border-collapse: collapse;
    background-color: #c7caca;
    box-shadow: 20px 20px 20px (0, 0, 0, 0,1);
}
table.fixed_header {
    width: 50%;
    border-collapse: collapse;
}

table.fixed_header thead {
    position: sticky;
    top: 0;
    background-color: royalblue;
}

table.fixed_header th {
    background-color: royalblue;
    border: 1px solid black;
    color: black;
    padding: 5px 15px;
    text-align: center;
}
td{
    border: 1px solid black;
    padding: 5px 15px; 
    text-align: center;
}
thead{
    box-shadow: 0 2px 6px;
    background-color: royalblue;
}
tr:nth-child(even){
    background-color: #a1a1a1;
}