mirror of
https://github.com/Steffo99/festa.git
synced 2024-12-23 15:14:23 +00:00
19 lines
318 B
CSS
19 lines
318 B
CSS
|
.index-layout {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
|
||
|
justify-content: space-around;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
@media only screen and (max-width: 639px) {
|
||
|
.index-title {
|
||
|
font-size: 5em;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@media only screen and (min-width: 640px) {
|
||
|
.index-title {
|
||
|
font-size: 10em;
|
||
|
}
|
||
|
}
|