body {
    background: #000;
    font-family: 'Roboto', sans-serif;


}

.hero {
    width: 100%;
    height: 100vh;
    background: url(../img/doctor-duval-clinic.jpg) no-repeat center center / cover;
    position: relative;
}

.hero::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: radial-gradient( rgba(0, 0, 0, 0.07) 60% , #000 );
}

.soon {
    color: #fff;
    font-weight: bold;
    font-size: 18px;

    position: absolute;
    bottom: 30px;
    right: 100px;
    text-transform: uppercase;
    z-index: 10;
}
.soon h2 {
    margin: 10px 0;
    text-align: right;
    font-size: 15px;
}
.soon a {
    display: flex;
    text-decoration: none;
    color: #fff;
    letter-spacing: 1px;
    align-items: center;
}

.soon a:hover, .soon a:focus {
    color: #5280d4;
}
.soon svg {
    width: 30px;
    height: 30px;
}


#map {
    width: 500px;
    height: 400px;
}

@media screen and (max-width: 400px){
    .soon {
        position: relative;
        text-align: center;
    }
}