50 lines
671 B
CSS
Raw Normal View History

main {
background-color: rgba(0, 0, 0, 0.6);
background-image: url("../fotos/films.jpg");
background-blend-mode: multiply;
2023-10-26 23:47:49 +04:00
background-size: cover;
background-position: center;
background-repeat: repeat-y;
color: #ffffff;
}
2023-11-05 00:08:01 +04:00
/* .container {
width: 100%;
2023-11-05 00:08:01 +04:00
} */
.span-row {
font-size: 30px;
text-decoration: underline;
}
@media screen and (max-width: 576px) {
.container {
width: 100%;
}
.btn,
.span-row {
font-size: min(10vw, 25px);
}
}
.btn {
width: 248px;
height: 50px;
font-size: 25px;
text-align: center;
cursor: pointer;
transition: 0.3s;
}
.btn:hover {
transform: scale(1.1);
}
#img-1,
#img-2,
#img-3 {
height: 320px;
width: 220px;
}