Select Git revision
index.module.css
index.module.css 876 B
/**
* CSS files with the .module.css suffix will be treated as CSS modules
* and scoped locally.
*/
.heroBanner {
padding: 4rem 0;
overflow: hidden;
color: white;
background-image: linear-gradient(rgba(0, 0, 0, 0.527),rgba(0, 0, 0, 0.5)) , url("/static/img/webcover_nologo.png");
background-size: cover;
}
.heroTitle {
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: flex-start;
text-align: center;
}
.heroTitle > h1 {
margin-bottom: 0;
}
@media screen and (max-width: 966px) {
.heroBanner {
padding: 2rem;
}
.heroContainer {
flex-direction: column;
justify-content: center;
}
.heroTitle {
align-items: center;
}
}
.heroContainer {
display: flex;
justify-content: flex-start;
align-items: center;
}
.hero__title {
margin-bottom: 0;
}
.hero__subtitle {
font-size: 18px;
}