48 lines
607 B
CSS
48 lines
607 B
CSS
|
main {
|
||
|
background-color: rgba(0, 0, 0, 0.6);
|
||
|
background-image: url("../fotos/films.jpg");
|
||
|
background-blend-mode: multiply;
|
||
|
background-repeat: round;
|
||
|
color: #ffffff;
|
||
|
}
|
||
|
|
||
|
.container {
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
.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;
|
||
|
}
|