31 lines
444 B
CSS
31 lines
444 B
CSS
.title {
|
|
color: white;
|
|
font-size: xx-large;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
z-index: 2;
|
|
padding: 10px;
|
|
}
|
|
|
|
.container {
|
|
padding: 20px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: 15px;
|
|
|
|
p {
|
|
font-size: large;
|
|
}
|
|
}
|
|
|
|
.btnContainer {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 15px;
|
|
} |