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
|
|
|
}
|
|
|
|
}
|