/*Imported a font, Baloo Bhaijaan 2, from Google Fonts*/
body {
    font-family: 'Baloo Bhaijaan 2', monospace;
    text-align: center;
    background-color: #d9d9d9;
    min-width: 300px;
    width: 800px;
    margin: 0 auto;
}

h1 {
    font-size: 35px;
    background-color: #9183ad;
    border-radius: 15px 50px; /*rounding background border*/
    background-position: center;
    background-size: cover;
}

/* h1 and Table header text */
 h1,
 thead {
    background-color: #9183ad;
    color: #ffffff;
    text-shadow: 2px 2px 4px #000000; /*shadow styles for headers*/
 }

 /* Table */
table {
    border-style: ridge; /*creating 3D table look*/
    border-width: 4px;
    border-color: #9183ad;
    filter: drop-shadow(0 0 0.50rem #000000); /*table shadow*/
}

td {
    background-color: #ffffff;
    text-align: left;
    border-top: hidden;
    border-bottom: 2px solid #000000;
    border-right: .2px solid #000000;
    border-style: outset;
    border-width: 2px;
}

