36 lines
710 B
SCSS
36 lines
710 B
SCSS
.Poster-main{
|
|
position: relative;
|
|
.Poster-container{
|
|
position: relative;
|
|
height: 30vw;
|
|
width: 100%;
|
|
margin-top: 85px;
|
|
.Poster-img{
|
|
height: 100%;
|
|
width: 100%;
|
|
position: absolute;
|
|
left: 0 ;
|
|
bottom: 0 ;
|
|
object-fit: cover;
|
|
// object-position: 0 40%;
|
|
}
|
|
.Poster-content-box{
|
|
position: relative;
|
|
height: 100%;
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
color: white;
|
|
.Poster-title{
|
|
font-size: 36px;
|
|
font-weight: 900;
|
|
margin-bottom: 30px;
|
|
}
|
|
.Poster-text{
|
|
font-size: 20px;
|
|
}
|
|
}
|
|
}
|
|
} |