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
|
|
|
margin-top: 6rem;
|
|
|
|
|
|
|
|
|
|
&__img {
|
|
|
|
|
display: block;
|
|
|
|
|
height: 200px;
|
|
|
|
|
width: 200px;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
background-image: url('../../assests/images/rc-logo.jpeg');
|
|
|
|
|
background-size: cover;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&__header {
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
}
|
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;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|