18 lines
351 B
CSS
18 lines
351 B
CSS
.title{
|
|
font-size: 44px;
|
|
font-weight: 700;
|
|
margin-bottom: 80px;
|
|
margin-top: 60px;
|
|
width: 100%;
|
|
text-align: center;
|
|
}
|
|
|
|
.routes_content_part{
|
|
margin-top: 50px;
|
|
display: grid;
|
|
grid-template-columns: 30% calc(100% - 30% - 41px);
|
|
gap: 41px;
|
|
@media (max-width: 800px) {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
} |