88 lines
1.3 KiB
CSS
88 lines
1.3 KiB
CSS
.banner {
|
|
width: 100%;
|
|
}
|
|
|
|
.banner .banner__mobile{
|
|
width: 100%;
|
|
}
|
|
|
|
.banner .banner__desktop {
|
|
display: none;
|
|
}
|
|
|
|
.sobre {
|
|
width: 100%;
|
|
margin-top: 84px;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
}
|
|
|
|
.sobre article {
|
|
padding-left: 5px;
|
|
}
|
|
|
|
.sobre article div h1{
|
|
margin: 0;
|
|
font-weight: 500;
|
|
font-size: 28px;
|
|
}
|
|
|
|
.sobre article p {
|
|
max-width: 330px;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 24px;
|
|
color: #000000;
|
|
}
|
|
|
|
.sobre .imagemRedesComputador {
|
|
width: 222.73px;
|
|
height: 204.57px;
|
|
margin: 65px auto 90.62px;
|
|
}
|
|
|
|
.sobre .saibaMais {
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
text-align: center;
|
|
}
|
|
|
|
.sobre .saibaMais .infos {
|
|
background-color: #FFFFFF;
|
|
width: 100%;
|
|
max-width: 350.33px;
|
|
height: 287.95px;
|
|
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.23);
|
|
margin: 8px 5px;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
}
|
|
|
|
.sobre .saibaMais .infos p {
|
|
max-width: 271px;
|
|
}
|
|
|
|
@media(min-width: 600px){
|
|
.banner .banner__mobile{
|
|
display: none;
|
|
}
|
|
|
|
.banner .banner__desktop {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
}
|
|
|