2025-02-25 22:21:31 -05:00
|
|
|
.intro {
|
2025-02-24 18:10:29 -05:00
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
2025-02-25 22:21:31 -05:00
|
|
|
|
|
|
|
|
&__img {
|
|
|
|
|
display: block;
|
2025-02-27 20:44:29 -05:00
|
|
|
height: 300px;
|
|
|
|
|
width: 300px;
|
2025-02-25 22:21:31 -05:00
|
|
|
border-radius: 50%;
|
2025-02-27 20:44:29 -05:00
|
|
|
background-image: url("../../assests/images/rc-logo.jpeg");
|
2025-02-25 22:21:31 -05:00
|
|
|
background-size: cover;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&__header {
|
|
|
|
|
text-transform: uppercase;
|
2025-02-27 20:44:29 -05:00
|
|
|
color: var(--mat-sys-primary);
|
|
|
|
|
font-size: 3rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&__sub-head {
|
|
|
|
|
font-size: 1.5rem;
|
|
|
|
|
text-align: center;
|
|
|
|
|
max-width: 760px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&__button {
|
|
|
|
|
font-size: var(--mdc-extended-fab-label-text-size, 1rem);
|
2025-02-25 22:21:31 -05:00
|
|
|
}
|
2025-02-24 18:10:29 -05:00
|
|
|
}
|
2025-02-25 22:21:31 -05:00
|
|
|
|
|
|
|
|
@media only screen and (max-width: 600px) {
|
|
|
|
|
.intro {
|
|
|
|
|
&__header {
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
2025-02-27 20:44:29 -05:00
|
|
|
|
|
|
|
|
&__sub-head {
|
|
|
|
|
font-size: 1.375rem;
|
|
|
|
|
}
|
2025-02-25 22:21:31 -05:00
|
|
|
}
|
2025-02-27 20:44:29 -05:00
|
|
|
}
|