* {margin: 0; padding: 0; border: 0; box-sizing: border-box}

body {
    background-color: orange;
    color: black;
}

button#changetitle {
    font-size: 1.3em;
    border: 5px double coral;
    box-shadow: cornflowerblue 2px 2px 5px;
}

h1 {
    margin: 16px; text-align: center;
}

h1 span {
    color: black; text-shadow: white 2px 2px 10px;
}

h1 span::after {
    /* content: "!!!"; */
}

table {
    width: 80vw;
    margin: 80px auto;
    border: 8px solid #006;
    border-collapse: collapse;
}

td, th {
    /* background-color: cornflowerblue; */
    border: 3px solid #003;
    height: .75in; width: 12.5%;
    min-width: 100px;
}

th:first-child {
    background-color: orangered;
}

.attention {
    background-color: orangered;
    color: white;
    font-weight: bold;
    font-size: 1.8em;
    text-align: center;
    border: 10px solid yellow;
    padding: 10px 10px 50px 10px;
    margin: -70px auto 600px auto;
    width: 80vw;
    border-radius: 40px 0px 40px 0px;
}
