.wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5rem 0;
}
.content {
    width: 80%;
    max-width: 1200px;
}
.header {
    width: 100%;
    text-align: center;
}
.header h1 {
    font-size: 40px;
    font-weight: 900;
    margin: 5px 0;
}
.text {
    padding: 2rem 0;
}
.text p {
    font-size: 16px;
    line-height: 20px;
    margin: 5px 0;
}
.text h2 {
    margin-top: 30px;
    font-size: 25px;
    margin-bottom: 10px;
}
.sub-header-text {
    font-size: 12px;
    color: #6d758d;
}
.header-text {
    color: black;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
}

@media (max-width: 500px) {
    .wrapper {
        padding: 3rem 0;
    }
    .content {
        width: 90%;
        max-width: none;
    }
}