* {
    padding:0; margin:0; border:0; box-sizing: border-box;
}

body {
    background-color: blanchedalmond;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #333;
}

button {
    font-size: 2em;
    margin: 8px;
    border: 2px solid black;
    box-shadow: 2px 2px 5px black;
}

h1 {
    margin: 16px 16px 80px 16px;
    text-align: center;
}

h1 span {
    color: black;
    text-shadow: 0px 0px 5px white;
}

h1 span::after {
    content:"!!!"
}

h2 {
    text-align: center;
    color: white;
}

p {
    text-align: center;
    color: white;
}

table {
    width: 80vw;
    margin: 80px auto;
    border: 8px solid #222;
    border-collapse: collapse;
}


td, th {
    border: 3px solid #222;
    padding: 8px;
    height: 2cm;
    width: 12.5%;
}

td:nth-child(1){
    background-color: darkblue;
}

th {
    background-color: lightseagreen;
}

th:first-child {
    background-color: tomato;
    color: #111;
}

.attention{
    color: #fff;
    font-weight: bold;
    font-size: 2.5em;
    text-align: center;
    border: 10px solid yellow;
    padding: 10px 10px 50px 10px;
    height: 20vh;
    width: 80vw;
    background-color: orange;
    margin: 0px auto 80px auto;
    border-radius: 45px 0px;
}