.block-content {
    background: 
        linear-gradient(rgba(13, 41, 70, 0.8), rgba(13, 41, 70, 0.8)), 
        url(../../img/ssoma/index.jpeg);
    background-size: 150%;
    background-position: 10% 80%;
    background-repeat: no-repeat;
}

.block-content .container {
    display: flex;
    flex-direction: column;
    justify-content:space-evenly;
    padding: 0 10%;
}

.index-title {
    font-size: 3.5rem;
    font-weight: bold;
}

.index-button {
    background-color: var(--red-mmtys);
    font-size: 1.1rem;
    font-weight: bold;
}

@media (max-width: 768px) {
    .block-content {
        background-size: cover;
        background-position: 30%;
    
    }

    .block-content .container {
        justify-content:space-between;
        padding: 40px;
    }

    .block-content .container div:nth-child(2) {
        text-align: center;
    }

    .index-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
}