* {
    margin: 0; padding: 0;border: 0; box-sizing: border-box;
}

body {
    font-family: fantasy;
    background-color:rosybrown;
    color: #222;

}

h1  {
    margin: 16px 16px 80px 16px; text-align: center;

}

h1 span {
    color: #000; text-shadow: 0px 0px 5px whitesmoke ;
}

h1 span::after {
    content: "!!!";
}

table {
    width: 80%; margin: 80px auto; border: 8px solid #222;
    border-collapse: collapse;
}


/* table headers are bold and centered*/
td, th {
    border: 3px solid darkcyan;
    padding: 8px; height: 1in;
    width: 12.5%; min-width: 100px;
    
}

th:first-child {
    background-color:slateblue;
}

.attention {
    background-color:lightgrey ;
    color: cadetblue;
    font-weight: bold;
    font-size: 2.5em;
    text-align: center;
    border: 10px solid lime;
    padding: 10px 10px 50px 10px;
    text-shadow: 5px 5px #222;
    margin: -65px auto 600px auto; 
    width: 80vw;
    border-radius: 40px 0px 40px 0px; /*starts at the top left clockwise*/
}
