.prices {
    background: linear-gradient(#F8EAD8, rgba(248, 234,	216, 0.5));
}
.prices table {
    margin: 0 auto;
}
.prices table tr td {
    text-align: left;
    padding: 0.4rem 2rem;
}
.prices table tr td:first-child {
    font-weight: 600;
}
.prices .price-cards {
    display: flex;
    justify-content: center;
}
.prices .price-card {
    border-radius: 15px;
    background: linear-gradient(rgb(195, 86, 1), rgba(195, 86, 1, 0.6));
    color: white;
    font-weight: bold;
    width: fit-content;
    padding: 3rem 2rem;
}
.prices .price-card h3 {
    margin-bottom: 3rem;
}

.more .block .block-wrapper {
    position: relative;
    aspect-ratio: 1;
}
.more .block .block-wrapper.first {
    background: url(/assets/arlista/aromaterapias.jpg);
    background-size: cover;
    background-position: center;
}
.more .block .block-wrapper.second {
    background: url(/assets/arlista/sved.jpg);
    background-size: cover;
    background-position: center;
}
.more .block .block-wrapper .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: rgba(236,168,105, 0.65);
    color: white;
    transition: 0.5s;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 32px;
}
.more .block a {
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}
.more .block .block-wrapper:hover .overlay {
    opacity: 1;
    transition: 0.4s;
    cursor: pointer;
}
.link {
    text-decoration: none;
    color: black;
}