.container-intro {
    width: 100vw;
    height: 100vh;
   
}
.blurbg {
    width: 100%;
    height: 100%;
    background-image: url(./assets/img/blur-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    z-index: -1;

}
.content-intro {
    width: 100%;
    padding: 40px;
    max-width: 548px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto;
}

.intro-headline {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-size: 48px;
    color: #ff6b01;
    line-height: 1;
}

.intro-text {
    line-height: 1.5;
    padding-top: 20px;
    padding-bottom: 30px;
}

.intro-btn {
    display: inline-block;
    border: none;
    background-color: #ff6b01;
    color: #fff;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 18px;
    padding: 14px 34px;
    margin-right: 16px;
    margin-bottom: 12px;
    cursor: pointer;
    text-decoration: none;
}

@media (max-width:416px) {
    .content-intro {
        
        padding: 16px;
    }
    .intro-headline {
    font-size: 36px;
    }
}