2022-05-29 03:00:48 +00:00
|
|
|
#page-index {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 100%;
|
2022-06-01 16:54:59 +00:00
|
|
|
grid-template-rows: auto 1fr;
|
2022-05-29 02:01:56 +00:00
|
|
|
|
2022-06-01 16:54:59 +00:00
|
|
|
justify-content: stretch;
|
2022-05-29 02:01:56 +00:00
|
|
|
text-align: center;
|
2022-06-01 16:54:59 +00:00
|
|
|
|
|
|
|
gap: 32px;
|
2022-05-29 02:01:56 +00:00
|
|
|
}
|
|
|
|
|
2022-05-29 03:00:48 +00:00
|
|
|
#page-index .hero-titles {
|
|
|
|
align-self: center;
|
|
|
|
grid-row: 1;
|
|
|
|
}
|
|
|
|
|
2022-06-01 16:54:59 +00:00
|
|
|
#page-index .hero-titles h1 {
|
2022-05-29 02:01:56 +00:00
|
|
|
font-size: 10rem;
|
|
|
|
}
|
|
|
|
|
2022-06-01 16:54:59 +00:00
|
|
|
#page-index .hero-titles h2 {
|
2022-05-29 02:01:56 +00:00
|
|
|
font-size: 2.5rem;
|
|
|
|
}
|
|
|
|
|
2022-05-29 03:00:48 +00:00
|
|
|
@media (max-width: 640px) or (max-height: 640px) {
|
2022-06-01 16:54:59 +00:00
|
|
|
#page-index .hero-titles h1 {
|
2022-05-29 02:01:56 +00:00
|
|
|
font-size: 5rem;
|
|
|
|
}
|
|
|
|
|
2022-06-01 16:54:59 +00:00
|
|
|
#page-index .hero-titles h2 {
|
2022-05-29 02:01:56 +00:00
|
|
|
font-size: 1.5rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-29 03:00:48 +00:00
|
|
|
#page-index .hero-action {
|
|
|
|
align-self: start;
|
2022-06-01 16:54:59 +00:00
|
|
|
justify-self: center;
|
|
|
|
|
2022-05-29 03:00:48 +00:00
|
|
|
grid-row: 2;
|
2022-06-01 16:54:59 +00:00
|
|
|
|
|
|
|
max-width: 800px;
|
|
|
|
width: 100%;
|
2022-05-29 03:00:48 +00:00
|
|
|
}
|