#product-overview {
    background: #ff1b68;
    width: 100vw;
    height: 48vh;
    padding: 2.6rem;
    background: linear-gradient(to top, rgba(80, 68, 18, 0.6) 10%, transparent), url("images/freedom.jpg") center/cover no-repeat border-box;

    /**  all the below properties can be applied as shorthand like above*/
    /* background-size: cover;
    background-position: left 40% bottom 80%;
    background-repeat: no-repeat;
    background-origin: border-box;
    background-clip: border-box; */



    position: relative;




}

/* .plan-list {
    width: 100%;
    margin:auto;
    text-align:center;
} */

.plan {
    background: #d5ffdc;
    text-align: center;
    padding: 26px;
    margin: 8px 0;
    width: 100%;
    display:flex;
    flex-direction: column;
    justify-content:space-between;
    height:28rem;


}

.plan>* {
    margin: 0 0 20px 0;
}


.plan--highlighted {
    background: #19b84c;
    color: white;
    height:30rem;
    z-index: 50;
    /* box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.5); */
}

.plan__annotation {
    background: white;
    color: #19b84c;
    padding: 8px;
    box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.5);
    border-radius: 4px;
}

.plan__features {
    list-style: none;
    margin: 0;
    padding: 0;
    border: 0;
}

.plan__features li {
    margin: 8px;
}


@media (min-width: 40rem)  {
    .plan {
        
        width: 30%;
        min-width: 15rem;
        max-width: 25rem;
    }

    .plan-list {
        width: 100%;
        margin: auto;
        display:flex;
        justify-content: center;
        align-items: center;
    }



    .plan--highlighted {

         box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.5); 
    }

}

.plan__title {
    color: #0e4f1F;
}

.plan__price {
    color: #858585;

}




.plan--highlighted .plan__price {
    color: #0e4f1F;
}

.section-title {
    color: #2ddf5c;
    text-align: center;
}

#product-overview h1 {
    color: white;
    font-family: 'Anton', sans-serif;
    margin-top: 42px;
    position: relative;
    font-size: 1.4rem;
}

.slogan {
    position: absolute;
    top: 82%;
    left: 3%;
}


#key-features {
    background: #ff1b68;
    margin-top: 80px;
    padding: 16px;
}

#key-features .section-title {
    color: white;
    margin: 32px;
}


.key-feature__list {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.key-feature {

    vertical-align: top;


}

.key-feature__image {
    background: #ffcede;
    width: 128px;
    border: 2px solid #424242;
    border-radius: 50%;
    height: 128px;
    margin: 10px auto;
    padding: 21px;

}

.key-feature__description {
    text-align: center;
    font-weight: bold;
    color: white;
    font-size: 20px;
    vertical-align: top;
}

@media(min-width:40rem){
    .key-feature {

        width:30%;
        max-width:25rem;
    
    
    }

    .key-feature__list{
        display:flex;
        justify-content:center;

    }
}

.modal {
    position: fixed;
    opacity: 0;
    
    z-index: 200;
    top: 20%;
    left: 30%;
    width: 50%;
    background: white;
    padding: 1rem;
    border: 1px solid #ccc;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
    transform: translateY(-4rem);
    transition: all 200ms ease-out 1s !important;
    
}

.modal__title {
    text-align: center;
    margin: 0 0 1rem 0;
}

.modal__actions {
    text-align: center;
}

.modal__action {
    border: 1px solid #0e4f1f;
    background: #0e4f1f;
    text-decoration: none;
    color: white;
    font: inherit;
    padding: 0.5rem 1rem;
    cursor: pointer;
}

.modal__action:hover,
.modal__action:active {
    background: #2ddf5c;
    border-color: #2ddf5c;
}

.modal__action--negative {
    background: red;
    border-color: red;
}

.modal__action--negative:hover,
.modal__action--negative:active {
    background: #ff5454;
    border-color: #ff5454;
}

@media(min-width:40rem) and (min-height:40rem) {
    #product-overview h1 {
        font-size: 2.0rem;
    }

    #product-overview {
        height: 55vh;
        background-position: left 50% bottom 83%;
    }
}