33 lines
504 B
CSS
33 lines
504 B
CSS
body {
|
|
}
|
|
|
|
.container{
|
|
position: relative;
|
|
text-align: center;
|
|
margin: auto;
|
|
padding: 0;
|
|
top: 0;
|
|
width: 100%;
|
|
height: 660px;
|
|
background-size: cover;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
border: 1px solid red;
|
|
}
|
|
|
|
.photo-banner {
|
|
width: 100%;
|
|
max-height: 660px;
|
|
}
|
|
|
|
.title {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
font-size: 100px;
|
|
color: white;
|
|
width: 100vw;
|
|
|
|
}
|