* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
background-color: lightgray;
|
|
text-align: center;
|
|
margin: 25px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 45px;
|
|
}
|
|
|
|
p {
|
|
margin-top: 50px;
|
|
font-size: 20px;
|
|
}
|
|
|
|
table {
|
|
background-color: lightblue;
|
|
}
|
|
|
|
.data-running {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 15px;
|
|
margin-top: 15px;
|
|
}
|