You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
@import url(https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Share+Tech+Mono&display=swap);
|
|
|
|
*{
|
|
|
|
box-sizing: border-box;
|
|
|
|
font-family: 'Poppins', sans-serif;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.main {
|
|
|
|
color: #212121;
|
|
|
|
font-size: 1rem;
|
|
|
|
padding-top: 70px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.title-banner{
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.banner-img{
|
|
|
|
width: 100%;
|
|
|
|
height: 250px;
|
|
|
|
object-fit: cover;
|
|
|
|
}
|
|
|
|
|
|
|
|
.banner {
|
|
|
|
position: relative; /* La classe parente doit avoir une position relative */
|
|
|
|
}
|
|
|
|
|
|
|
|
.title-banner {
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
|
|
color: #fff;
|
|
|
|
padding: 10px;
|
|
|
|
border-radius: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.title-banner .title{
|
|
|
|
font-size: 35px;
|
|
|
|
color: #00DBFF;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.title-banner .subtitle{
|
|
|
|
font-size: 20px;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.title-banner .description{
|
|
|
|
font-size: 15px;
|
|
|
|
color: #fff;
|
|
|
|
}
|