
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    background-color: #DDE3F1;
}

header {
    height: 15%;
    border: 1px solid black;

    width: 100%;
    height: 14vh;

    background-color: #efd191;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='152' height='152' viewBox='0 0 152 152'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='temple' fill='%23000000' fill-opacity='1'%3E%3Cpath d='M152 150v2H0v-2h28v-8H8v-20H0v-2h8V80h42v20h20v42H30v8h90v-8H80v-42h20V80h42v40h8V30h-8v40h-42V50H80V8h40V0h2v8h20v20h8V0h2v150zm-2 0v-28h-8v20h-20v8h28zM82 30v18h18V30H82zm20 18h20v20h18V30h-20V10H82v18h20v20zm0 2v18h18V50h-18zm20-22h18V10h-18v18zm-54 92v-18H50v18h18zm-20-18H28V82H10v38h20v20h38v-18H48v-20zm0-2V82H30v18h18zm-20 22H10v18h18v-18zm54 0v18h38v-20h20V82h-18v20h-20v20H82zm18-20H82v18h18v-18zm2-2h18V82h-18v18zm20 40v-18h18v18h-18zM30 0h-2v8H8v20H0v2h8v40h42V50h20V8H30V0zm20 48h18V30H50v18zm18-20H48v20H28v20H10V30h20V10h38v18zM30 50h18v18H30V50zm-2-40H10v18h18V10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); background-color: #efcf98;
    border-bottom: 15px solid black;
}

header p {  
    display:inline-block;
    border: 5px solid black;
    font-size: 50px;
    font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serifs;

    margin: 2vh 2vh;
    background-color: #DDE3F1;
    padding: 10px;
    border-radius: 10px;
}

table{
    margin: 5vh auto;

    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);

    width: 70vw;
}

table.rounded-corners {
    /* Change these properties */
    --border: 1px solid black;
    border-radius: 10px;
   
    /* Don't change these properties */
    border-spacing: 0;
    border-collapse: separate;
    border: var(--border);
    overflow: hidden;  
}
   
/* Apply a border to the right of all but the last column */
table.rounded-corners th:not(:last-child),
table.rounded-corners td:not(:last-child) {
    border-right: var(--border);
}
   
/* Apply a border to the bottom of all but the last row */
table.rounded-corners>thead>tr:not(:last-child)>th,
table.rounded-corners>thead>tr:not(:last-child)>td,
table.rounded-corners>tbody>tr:not(:last-child)>th,
table.rounded-corners>tbody>tr:not(:last-child)>td,
table.rounded-corners>tfoot>tr:not(:last-child)>th,
table.rounded-corners>tfoot>tr:not(:last-child)>td,
table.rounded-corners>tr:not(:last-child)>td,
table.rounded-corners>tr:not(:last-child)>th,
table.rounded-corners>thead:not(:last-child),
table.rounded-corners>tbody:not(:last-child),
table.rounded-corners>tfoot:not(:last-child) {
    border-bottom: var(--border);
}

/*Selects the data in the third column*/
tbody>tr:nth-child(n+2)>:nth-child(3){
    white-space: nowrap;
}


tbody>tr:nth-child(n+2)>:nth-child(1){
    text-align: center;
}

th {
    background-color:#efd191;
    color: black;
    font-size: 30px;
    padding: 8px;
}

td {
    font-size: 16px;
    padding: 8px 8px;   
    background-color:#f1ebdd;
    
}

td span { 
    color: #00FF41;
    font-family: monospace;
    background-color: #0D0208;
    
}


