.nav-menu > :nth-child(3) {
    color: #FFB24B;
    cursor: not-allowed;
    pointer-events: none;
}

body {
    background: url("../assets/background/background7.jpeg") no-repeat 0 0/cover;
}

main {
    display: grid;
    width: 70%;
    margin: 40px auto;
    grid-row-gap: 40px;
    grid-column-gap: 80px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, auto);
    grid-template-areas:
    'price price'
    'wedding-price photo-price'
    'print-price print-price'
    'faq faq'
;
}

h3 {
    color: #FFB24B;
    grid-area: price;
    display: flex;
    justify-content: center;
    align-items: center;
    height: fit-content;
}

.wedding-price {
    grid-area: wedding-price;
}

.price-per-photo {
    grid-area: photo-price;
}

.print-price {
    grid-area: print-price
}

.faq {
    grid-area: faq;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq a {
    color: #FFB24B;
}

.wedding-price,
.price-per-photo,
.print-price {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: fit-content;
    border-radius: 16px 16px 0 0;
    border: 1px solid #FFB24B;
}

.wedding-price p,
.price-per-photo p,
.print-price p {
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #FFB24B;
    width: 100%;
}

.wedding-price p:first-child,
.price-per-photo p:first-child ,
.print-price p:first-child {
    border-radius: 16px 16px 0 0;
    background: #FFB24B;
    color: black;
}

@media (max-width: 830px) {
    p {
        font-size: 16px;
    }

    .wedding-price p,
    .price-per-photo p,
    .print-price p {
        height: 50px;
    }
}

@media (max-width: 700px) {
    main {
        width: 80%;
        grid-column-gap: 20px;
        margin-top: 20px;
    }
    h3 {
        font-size: 20px;
    }
}

@media (max-width: 500px) {
    p {
        font-size: 14px;
    }
}