/* Part 1 */
body {
    margin: 0;
    background-color: #F6DFEB;
    font-family: 'Nunito Sans', sans-serif;
    line-height: 30px;
}

/* Part 2 */

.section-divider {
    background-image: url(Images/holiday.jpg);
    height: 500px;
    background-size: cover;
    background-position: 0% 50%;
    opacity: 0.7;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Part 3 */
.blackbg-text {
    font-size: 32px;
    background-color: black;
    color: white;
    padding: 15px;
    letter-spacing: 10px;
}

.cake {
    margin: 60px 20%;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
}

.bold {
    font-family: bold;
}

/* Flow */
h1,h2 {
    text-align: center;
}

/* Top Content */
.p-pic {
    flex-basis: 37%;
}

.description {
    flex-basis: 57%;
    margin-left: 3%;
    align-self: center;
}

/* Mid Content */
.my-list {
    flex-basis: 50%;
}

.beside-list {
    flex-basis: 40%;
}

/* Btm Content */
.column {
    flex-basis: 25%;
    padding: 0 5px;
    box-sizing: border-box;
}



/* Footer */

.footer {
    background-color: #8FD6E1;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.8;
}

.button {
    background-color: black;
    color: white;
    text-decoration: none;
    padding: 10px;
    margin: 0 10px;
}



/* Images */

top-image {
    background-image: url(Images/holiday.jpg);
}

middle-image {
    background-image:  url(Images/secret.jpg);
}

bottom-image {
    background-image: url(Images/memories.jpg);
}

img {
    width: 100%;
}

section-divider {
    background-color: black;
}

/* Media Query */
/* Tablets */
@media screen and (max-width: 800px) {
    /* Top Content */
.p-pic {
    flex-basis: 100%;
}

.description {
    flex-basis: 100%;
}

/* Mid Content */
.my-list {
    flex-basis: 100%;
}

.beside-list {
    flex-basis: 100%;
}

/* Btm Content */
.column {
    flex-basis: 50%;
    padding: 0 4px;
    box-sizing: border-box;
}
}

/* Phone*/
@media screen and (max-width: 600px) {
    .column {
        flex-basis: 100%;

}





















