<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.container-front-page {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 73px;
    margin-bottom: 8rem;
}

.title-front-page{ 
    color: #fff;
    font-family: var(--font-primary);
    text-align: right; 
    display: flex;
    align-items: center;
    justify-content: center; 
    height: 90%; 
    font-size: 4rem;
    margin-left: 15rem;
    position: absolute;
    z-index: 1;
}

.degraded {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, transparent, rgb(0, 0, 0));
    z-index: 1;
}

.image-front-page {
    width: 100%;
    height: 150%;
    object-fit: cover;
    display: block;
    z-index: 2;
}
@media screen and (max-width: 768px) {
    .title-front-page{ 
        font-size: 2rem;
        margin-left:8rem;
    }
}
@media (max-width: 450px){
    .title-front-page{ 
        margin-left:4rem;
    }
}
</pre></body></html>