* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

#header {
    border: 0;
}

.container {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero {
    margin: 120px 0 0;
    width: 100%;
    max-width: 550px;
    text-align: center;
}

.image img {
    width: 260px;
}

.h3-design {
    font-size: 18px;
    color: #000000b8;
    font-weight: 700;
    margin: 4px 0 8px;
}

.p-design {
    font-weight: 600;
    font-size: 13px;
    line-height: 1.6;
    color: #000000b8;
}

/* responsive css design */

@media only screen and (max-width:740px) {

    .hero {
        margin: 420px 0 0 !important;
    }
}

@media only screen and (max-width:440px) {

    .hero {
        width: 100%;
        flex: none;
    }
}