#intro {
    padding-top: 50px;
    padding-bottom: 90px;
}

.intro-content-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 660px;
    margin: 0 auto 60px;
}

.page-h1-header {
    font-size: 32px;
    color: #2d2d2d;
    font-weight: bold;
    font-family: "Montserrat-Bold", "Montserrat-Alternates-Bold", sans-serif;
    margin: 0 0 20px;
    padding: 20px 0 0;
}

.intro-description {
    font-size: 20px;
    line-height: 150%;
    color: #2d2d2d;
    margin-bottom: 30px;
}

.link-btn {
    border: 1px solid #2d2d2d;
    border-radius: 8px;
    padding: 14px 28px;
    color: white;
    font-weight: bold;
    background-color: rgba(33, 150, 243, 1);
     -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.link-btn:hover {
    cursor: pointer;
    background-color: rgba(33, 150, 243, 0.8);
}

@media (max-width: 1080px) {
    .link-btn {
        font-size: 20px;
    }

    .intro-description {
        margin-bottom: 50px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .intro-content-wrapper {
        margin-bottom: 45px;
    }

    #intro {
        padding-bottom: 50px;
    }
}