44 lines
608 B
CSS
Raw Normal View History

2023-10-26 23:47:49 +04:00
main {
background-color: rgb(0, 0, 0);
2023-11-13 01:55:03 +04:00
background-image: url("../images/logo-livecinema-light.png");
2023-10-26 23:47:49 +04:00
background-position: center;
background-size: cover;
background-repeat: no-repeat;
color: #ffffff;
}
.col {
opacity: 0.6;
}
p {
font-size: 25px;
text-align: center;
}
.btn {
width: 300px;
height: 50px;
font-size: 25px;
transition: 0.3s;
}
.btn:hover {
transform: scale(1.1);
}
@media screen and (max-width: 576px) {
2023-11-07 18:40:38 +04:00
p {
2023-10-26 23:47:49 +04:00
font-size: min(10vw, 25px);
}
2023-11-07 18:40:38 +04:00
.btn {
font-size: min(10vw, 18px);
width: 30vh;
}
2023-10-26 23:47:49 +04:00
}
/* .promo-text-block .promo-middle {
font-size: min(20vw, 160px);
} */