2023-01-26 21:05:55 -06:00
|
|
|
html, body {
|
|
|
|
height: 100%;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
background: black;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2023-02-14 14:01:07 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.button {
|
|
|
|
background: blue;
|
|
|
|
color: white;
|
|
|
|
padding: 15px 20px;
|
|
|
|
font-size: 32px;
|
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
|
|
text-transform: uppercase;
|
|
|
|
cursor: pointer;
|
|
|
|
position: relative;
|
|
|
|
}
|