#service-area {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin-bottom: 50px;
}

.item-container {
    flex: 0 0 30%;
    padding: 10px;
}

.item {
    text-align: center;
}

.item .cost {
    font-size: 30pt;
}

.item .name {
    font-size: 30pt;
}

.item .desc {
    text-align: center;
    margin: 10px;
    padding: 5px;
    height: 100%;
}

/*Opaque White*/
.item-container {
    box-shadow: 0px 3px 6px rgba(0, 0, 0, .1);
    backdrop-filter: blur(4px);
    background-color: rgba(255, 255, 255, 0.6);
}

.item .desc {
    background-color: rgba(255, 255, 255, 0.2);
}

/*Text Shadow*/
.item .name,
.item .cost {
    --offset: 10px;
    text-shadow: 10px 10px 20px white,
        10px -10px 20px white, -10px -10px 20px white, -10px 10px 20px white;
}

/*Border Radius*/
.item-container,
.item .desc {
    border-width: 2px;
    border-color: #000000;
    border-radius: 10px;
    border-style: solid;
}

@media (max-width:800px) {
    #service-area {
        display: block;
    }

    .item-container {
        margin: 0 10px 25px 10px;
    }

    .item .cost {
        font-size: 25pt;
    }

    .item .name {
        font-size: 25pt;
    }
}

