Files
2024-05-30 15:40:13 +03:00

28 lines
459 B
CSS

body {
text-align: center;
display: flex;
flex-direction: column;
min-height: 100vh;
}
.page-container {
text-align: center;
color: black;
flex-grow: 1;
display: flex;
justify-content: center;
align-items: center;
}
.container {
text-align: center;
color: black;
max-width: 800px;
background-color: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}