@import url('https://fonts.googleapis.com/css2?family=Handlee&display=swap');

body {
    background-color: #cbcdc0;
    font-family: 'Handlee', cursive;
    margin: 0 auto;
    scroll-behavior: smooth;
}

header {
    margin-block: 5rem;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    color: #47493c;
}

header img {
    width: 10rem;
}

main article {
    background-color: #eeede8;
    display: flex;
    padding-inline: 10rem;
    align-items: center;
    gap: 5rem;
    padding-block: 3rem;
}

main article:nth-child(2) {
    flex-direction: row-reverse;
}

article img {
    flex-basis: 50%;
    width: 40%;
    opacity: 0.7;
    border-radius: 1rem;
    box-shadow: 2px 3px 9px -2px rgba(0,0,0,0.75);
}

.bonus-deal,
.pricing {
    display: flex;
}

.bonus-deal p:first-child,
.pricing p:first-child {
    flex-basis: 100%;
}

.bonus-deal p:last-child,
.pricing p:last-child {
    text-align: right;
}

.pricing {
    font-size: 1.3rem;
}

.bonus-deal {
    font-size: 1.1rem;
}

.price-container,
.contact {
    width: 25%;
    margin: auto;
    margin-bottom: 3rem;
}

.price-container h3 {
    text-align: center;
}

.contact {
    width: 40%;
    border-top: #47493c solid 1px;
    text-align: center;
    font-size: 1.1rem;
}

.icons {
    box-shadow: 0px 0px 0px 0px rgba(0,0,0,0);
    height: 2rem;
    width: 2rem;
    border-radius: 0;
    padding-inline: 1rem;
}

.contact a {
    color: black;
    text-decoration: none;
}

.content {
    color: #47493c;
    flex-basis: 50%;
}

footer {
    text-align: center;
    color: #7f8078;
}

@media screen and (max-width: 1000px) {
    main article {
        display: block;
        padding-inline: 5rem;
        align-items: center;
        gap: 5rem;
        text-align: center;
    }

    article img {
        width: 300px;
    }

    .price-container {
        width: 75%;
        margin: auto;
        margin-bottom: 3rem;
    }

    .contact {
        width: 85%;
    }
}