* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif; /* assuming Montserrat or similar */
    background-color: #282525; /* Sfondo uniforme scuro */
}

.home-container {
    height: 100vh;
    height: 100dvh;
    background-image: url('img/sfondo.jpg'); /* Adjust with your actual image filename */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 60px 20px;
    color: #ffffff;
}

.top-text span, .bottom-text > span {
    display: block;
}

.top-text {
    align-self: center;
    text-align: center;
    font-size: clamp(2rem, 8vw, 4rem);
    line-height: 1.1;
    letter-spacing: 2px;
}

.top-text .light {
    font-weight: 300;
}

.top-text .bold {
    font-weight: 800;
}

.bottom-text {
    align-self: flex-start;
    text-align: left;
    font-size: clamp(1.5rem, 6vw, 2.5rem);
    line-height: 1.2;
    letter-spacing: 1px;
}

.bottom-text .bold {
    font-weight: 800;
}

.bottom-text .light {
    font-weight: 300;
}

@media (min-width: 768px) {
    .home-container {
        padding: 5% 20px;
    }
}
