body {
    font-family: 'Lora', Arial, sans-serif;
    margin: 0;
    padding: 0;
    /* background: #901E3E; */
    background: #3B060A;
    color: #FBF5DE;
    font-weight: 600;
}

main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 20px 40px;
}

main h3 {
    align-self: center;
    text-align: center;
    font-size: 1.2em;
}

.discount {
    display: flex;
    justify-content: center;
    align-items: center;
}

.discount p {
    text-align: center;
}

.discount-50 {
    font-family: 'Lora', Arial, sans-serif;
    font-size: 1.2em;
    font-weight: bold;
}

.service-items {
    background-color: #FBF5DE;
    color: #3B060A;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-items .item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.discounted div {
    height: 50px;
}

.prices {
    font-family: 'Lora', Arial, sans-serif;
    text-align: right;
    width: 40%;
}

.discounted div {
    height: 50px;
}

.service-items .item div {
    margin-bottom: 10px;
}

.discounted-price {
    color: #901E3E;
    font-weight: bold;
    font-size: 1.2em;
}

.original-price {
    text-decoration: line-through;
    color: #666;
    font-size: 0.9em;
}

@media (max-width: 600px) {
    main {
        display: flex;
        flex-direction: column;
        gap: 30px;
        margin: 0 5px;
        justify-content: center;
        align-items: center;
    }

    .service-items {
        width: 80%;
        padding: 20px;
    }
}

@media (max-width: 1000px) and (min-width: 600px){
    main {
        display: flex;
        flex-direction: column;
        gap: 30px;
        margin: 0 5px;
        justify-content: center;
        align-items: center;
    }

    .service-items {
        width: 60%;
        padding: 20px 60px;
    }
}
