2022-08-30 16:21:32 -07:00
|
|
|
/**
|
|
|
|
* CSS files with the .module.css suffix will be treated as CSS modules
|
|
|
|
* and scoped locally.
|
|
|
|
*/
|
|
|
|
|
|
|
|
.heroBanner {
|
2022-10-22 12:42:02 -07:00
|
|
|
padding: 1.8rem 0 4rem;
|
2022-08-30 16:21:32 -07:00
|
|
|
text-align: center;
|
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 996px) {
|
|
|
|
.heroBanner {
|
|
|
|
padding: 2rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.buttons {
|
2024-05-22 22:31:46 +09:00
|
|
|
display: grid;
|
|
|
|
grid-auto-flow: column;
|
2022-08-30 16:21:32 -07:00
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2024-05-22 22:31:46 +09:00
|
|
|
column-gap: 2rem;
|
|
|
|
row-gap: 1rem;
|
2022-08-30 16:21:32 -07:00
|
|
|
}
|
2022-09-09 18:08:01 -07:00
|
|
|
|
2024-05-22 22:31:46 +09:00
|
|
|
@media screen and (max-width: 996px) {
|
|
|
|
.buttons {
|
|
|
|
grid-auto-flow: row;
|
|
|
|
}
|
2022-09-09 18:08:01 -07:00
|
|
|
}
|
2022-10-22 12:42:02 -07:00
|
|
|
|
|
|
|
div.logo {
|
|
|
|
height: 100px;
|
|
|
|
text-align: center;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
}
|