2022-02-06 18:40:28 +00:00
|
|
|
/**
|
|
|
|
* CSS files with the .module.css suffix will be treated as CSS modules
|
|
|
|
* and scoped locally.
|
|
|
|
*/
|
|
|
|
|
|
|
|
.heroBanner {
|
2022-07-22 18:50:56 +00:00
|
|
|
padding: 2rem 0;
|
2022-02-06 18:40:28 +00:00
|
|
|
text-align: center;
|
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
2022-07-23 18:41:12 +00:00
|
|
|
background: rgb(255, 246, 237);
|
2022-02-06 18:40:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 966px) {
|
|
|
|
.heroBanner {
|
|
|
|
padding: 2rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.buttons {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2022-07-23 18:41:12 +00:00
|
|
|
}
|