button.normal {
    font-size: 16px;
    font-weight: 600;
    padding: 15px 30px;
    color: black;
    background-color: white;
    border-radius: 20px;
    cursor: pointer;
    border: 2px solid black;
    outline: none;
    transition: 0.2 ease;
}

button.normal:hover,
button.normal.active {
    background-color: rgb(227, 223, 223);


}


button.white {
    font-size: 16px;
    font-weight: 600;
    padding: 7px 32px;
    color: black;
    background-color: white;
    cursor: pointer;
    outline: none;
    transition: 0.2 ease;
    margin-top: 10px;
    width: 170px;
    border-radius: 16px;
    border: none;

}

.aboutuscontainer {
    width: 800px;
    height: 400px;
    display: flex;
    flex-direction: column;
    background-color: rgb(244, 239, 226);
    margin: 40px;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    position: relative;
    left: 15%;
}

.aboutuscontainer h3 {
    text-align: center;
    font-family: Sans-serif;
    font-weight: 600;
    margin-top: 20px;
    padding: 25px;

}

.aboutuscontainer p {
    text-align: center;
    width: 700px;
    margin-top: 20px;
    line-height: 2;
    position: relative;
    font-size: 20px;
    bottom: 20px;
    font-weight: 600;
    border: 2px solid green;
}

@media only screen and (max-width: 600px) {
    .aboutuscontainer {
        width: 90%;
        left: 0;
        margin: 20px;
        height: auto;
    }

    .aboutuscontainer h5 {
        font-size: 20px;
        top: 4px;
        width: 90%;
        height: auto;
    }

    .aboutuscontainer p {
        width: 90%;
        bottom: 10px;
        height: auto;
        font-size: 15px;
    }

    #imagebanner img {
        height: 40%;
    }
}

@media only screen and (max-width: 768px) {
    .aboutuscontainer {
        width: 90%;
        left: 0;
        margin: 30px;
        height: auto;
    }

    .aboutuscontainer h5 {
        font-size: 22px;
        top: 5px;
        width: 90%;
        height: auto;
    }

    .aboutuscontainer p {
        width: 90%;
        height: auto;
        bottom: 15px;
    }
}