body {
    padding: 0;
    margin: 0;
}

.screen {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    background-image: url('/img/law.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.screen__text-conteiner {
    z-index: 2;
    position: relative;
}

.screen-title {
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    color: white;
    
}

.screen-subtitle {
    font-size: 30px;
    text-align: center;
    color: white;
}

.screen-address {
    font-size: 20px;
    text-align: center;
    color: white;
}

.screen-law {
    font-size: 20px;
    text-align: center;
    color: white; 
}

.screen-law-wrap {
    margin-top: 80px;
}

@media (max-width: 768px) {
    .screen {
      padding-left: 15px;
      padding-right: 15px;
    }
}