21 lines
364 B
CSS
21 lines
364 B
CSS
#transition-container {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
font-family: Arial, sans-serif;
|
|
}
|
|
|
|
button {
|
|
width: 158px;
|
|
height: 55px;
|
|
border: 1px solid black;
|
|
border-radius: 5px;
|
|
background-color: white;
|
|
color: black;
|
|
font-size: small;
|
|
text-align: center;
|
|
}
|