.hero {
    min-height: 100vh;
    background: url('/assets/img/choeur.jpg') center/cover no-repeat;
    position: relative;
  	justify-content: center;
    padding-top: 70px;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    color: white;
    padding: 20px;
}

h1 {
    font-size: 34px;
}

h1 span {
    display: block;
    font-size: 18px;
    font-weight: normal;
}

.infos {
    margin: 15px 0;
    font-size: 16px;
}

.sub {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 25px;
}

.cta {
    background: #00F26D;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    color: white;
    font-size: 16px;
}



@media (min-width: 900px){
    h1 { font-size: 48px; }
    h1 span { font-size: 24px; }
    .infos { font-size: 22px; }
    .sub { font-size: 18px; }
    .cta { font-size: 22px; padding: 16px 32px; }
}
