30 lines
453 B
CSS
30 lines
453 B
CSS
body {
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100vh;
|
|
width: 100vw;
|
|
}
|
|
|
|
#image {
|
|
height: fit-content;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
#image-button:hover {
|
|
cursor: pointer;
|
|
}
|
|
|
|
#secret {
|
|
font-size: 0.4em;
|
|
}
|
|
|
|
#secret:hover {
|
|
cursor: pointer;
|
|
}
|