29 lines
445 B
SCSS
29 lines
445 B
SCSS
.main-lobby {
|
|
height: 75vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-evenly;
|
|
align-items: center;
|
|
|
|
&__name {
|
|
display: flex;
|
|
flex-direction: column;
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
&__container {
|
|
display: flex;
|
|
gap: 2rem;
|
|
|
|
&-button {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
}
|
|
|
|
&__title {
|
|
font-size: 7.5rem;
|
|
}
|
|
} |