1
Fork 0
mirror of https://github.com/Steffo99/festa.git synced 2024-12-23 15:14:23 +00:00
festa/styles/index.css

30 lines
459 B
CSS
Raw Normal View History

2022-05-25 15:50:31 +00:00
.index {
2022-05-25 15:03:53 +00:00
display: flex;
flex-direction: column;
2022-05-25 15:50:31 +00:00
justify-content: space-evenly;
2022-05-25 15:03:53 +00:00
align-items: center;
2022-05-25 15:50:31 +00:00
text-align: center;
min-height: 100vh;
2022-05-25 15:03:53 +00:00
}
@media only screen and (max-width: 639px) {
2022-05-25 15:50:31 +00:00
.index h1 {
font-size: 5rem;
}
.index h2 {
font-size: 1.5rem;
2022-05-25 15:03:53 +00:00
}
}
@media only screen and (min-width: 640px) {
2022-05-25 15:50:31 +00:00
.index h1 {
font-size: 10rem;
}
.index h2 {
font-size: 2.5rem;
2022-05-25 15:03:53 +00:00
}
}