
.centered {
    left: 50%;
    position: absolute;
}

hr {
    margin-top: 20px;
    margin-bottom: 0;
    color: #e0e0de;
    background-color: #e0e0de;
    height: 1px;
}

.hero-image {
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2)), url("../images/website_heroimage.jpg");
    height: 90%;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}

.hero-text {
    text-align: center;
    position: relative;
    top: 75%;
    left: 62%;
    transform: translate(-50%, -50%);
    color: white;
    font-family: meno-banner, serif;

    font-weight: 300;

    font-style: normal;
    font-size: 40px;
    width: 80%;
}

.three-card-row {
    margin-top: 20px;
    display: inline-block;
}

.three-card-row > div {
    float: left;
    width: 100%;
}


.box-shadow > img {
    width: 100%;
    vertical-align: middle;
}

.paragraph-row {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-bottom: 100px;
}

.paragraph-row > div > p {
    font-family: meno-banner, serif;
    font-weight: 400;
    font-style: normal;
    font-size: 40px;
    margin: 10px 0 40px 0;
}


.card-label {
    padding: 0.01em 16px;
    text-align: center;
    font-family: mr-eaves-modern, sans-serif;

    font-weight: 300;

    font-style: normal;
    font-size: 20px;
}

/*styling for tablet*/
@media (min-width: 480px) and (max-width: 767px) {
    .three-card-row > div {
        width: 50%;
    }

    .paragraph-row {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .first-card, .middle-card {
        padding: 0 5px;
    }

    .last-card {
        padding: 5px 5px;
    }

}

/*styling for desktop*/
@media (min-width: 768px) {
    .three-card-row > .card {
        width: 33.33333%;
    }

    .first-card {
        padding-right: 8px
    }

    .middle-card {
        padding: 0 4px
    }

    .last-card {
        padding-left: 8px
    }


    .paragraph-row {
        display: flex;
        justify-content: space-around;
        flex-direction: row;
        text-align: center;
        width: 100%;
    }
}




