15 lines
218 B
CSS
15 lines
218 B
CSS
.booking {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
background-color: #495e57;
|
|
padding: 1rem;
|
|
border-radius: 1rem;
|
|
height: 100%;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.booking h1 {
|
|
font-size: 2.5rem;
|
|
margin: 0;
|
|
}
|