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 {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
2022-09-09 18:08:01 -07:00
|
|
|
|
|
|
|
.button {
|
|
|
|
margin-right: 1rem;
|
|
|
|
margin-left: 1rem;
|
|
|
|
}
|
2022-10-22 12:42:02 -07:00
|
|
|
|
|
|
|
div.logo {
|
|
|
|
height: 100px;
|
|
|
|
text-align: center;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
}
|