body {
    background-color: aquamarine;
    margin: 0;
    padding: 0;
}
h1 {
    text-align: center;
    padding: 15px;
}
.name, .quote{
    font-weight: bold;
}
.name{
    text-decoration: underline;
}
p {
    text-align: center;
}
/* tablet size*/
@media (min-width: 650px){
    .flex-container {
        display: flex;
        justify-content: center;
        width: 100%;
        gap: 35px;
        flex-wrap: wrap;
        align-content: space-around;
        margin: 10px;
    }
    body {
        background: #7F7FD5;  /* fallback for old browsers */
        background: -webkit-linear-gradient(to top, #91EAE4, #86A8E7, #7F7FD5);  /* Chrome 10-25, Safari 5.1-6 */
        background: linear-gradient(to top, #91EAE4, #86A8E7, #7F7FD5); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
        margin: 20px;
        padding: 20px;

    }
    .bobs-burger-section, .bugsbunny-section,.Brain-section, .daffy-section, .millhouse-section, .fozzie-section, .pinky-section, .scooby-section {
        text-align: center;
        width: 40%;
        align-items: center;
        padding-bottom: 15px;
        padding-left: 10px;
        padding-right: 10px;


    }
    .bobs-burger-img, .Brain-img, .bugsbunny-img, .pinky-img, .scooby-img ,.daffy-img, .fozzie-img, .millhouse-img {
        width: 70%;
        height: 60%;
        border: 5px solid black;
        border-radius: 15px;
        object-fit: cover;
    }
}
/* desktop design*/
@media (min-width: 1200px) {
    .flex-container {
        display: flex;
        width: 100%;
        gap: 25px;
        flex-wrap: wrap;
        align-content: space-between;
        padding-bottom: 15px;

    }
    body {
        background: #667db6;  /* fallback for old browsers */
        background: -webkit-linear-gradient(to top, #667db6, #0082c8, #0082c8, #667db6);  /* Chrome 10-25, Safari 5.1-6 */
        background: linear-gradient(to top, #667db6, #0082c8, #0082c8, #667db6); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
        margin: 20px;
        padding: 20px;

    }
    .bobs-burger-section, .bugsbunny-section, .Brain-section, .daffy-section, .millhouse-section, .fozzie-section, .pinky-section, .scooby-section {
        text-align: center;
        align-items: center;
        width: 30%;
        padding-bottom: 25px;

    }
    .bobs-burger-img, .Brain-img, .bugsbunny-img, .pinky-img, .scooby-img, .daffy-img, .fozzie-img, .millhouse-img {
        border: 5px solid black;
        border-radius: 15px;
        width: 80%;
        height: 60%;
        object-fit: cover;
    }
}
    /* mobile design */
     @media (min-width: 500px) and (max-width: 650px) {
        body {
            background: #000046; /* fallback for old browsers */
            background: linear-gradient(to top, #1CB5E0, #000046); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
            color: white;
            margin: 20px;
            padding: 20px;
        }

        .bobs-burger-section, .bugsbunny-section, .Brain-section, .daffy-section, .millhouse-section, .fozzie-section, .pinky-section, .scooby-section {
            width: 100%;
            text-align: center;
            margin: auto;
            gap: 15px;
        }
        .bobs-burger-img, .Brain-img, .bugsbunny-img, .daffy-img, .fozzie-img, .millhouse-img, .pinky-img, .scooby-img {
            width: 60%;
            height: 60%;
            border: 2px solid white;
            border-radius: 10px;
            padding: 10px;
            margin: auto;
            display: block;
            gap: 20px;
            text-align: center;
            object-fit: cover;
        }
    }
@media (max-width: 500px) {
    body {
        background: #000046; /* fallback for old browsers */
        background: linear-gradient(to top, #1CB5E0, #000046); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
        color: white;
        margin: 20px;
        padding: 20px;
    }

    .bobs-burger-section, .bugsbunny-section, .Brain-section, .daffy-section, .millhouse-section, .fozzie-section, .pinky-section, .scooby-section {
        width: 100%;
        text-align: center;
        margin: auto;
        gap: 15px;
    }
    .bobs-burger-img, .Brain-img, .bugsbunny-img, .daffy-img, .fozzie-img, .millhouse-img, .pinky-img, .scooby-img {
        width: 60%;
        height: 60%;
        border: 2px solid white;
        border-radius: 10px;
        display: block;
        gap: 30px;
        text-align: center;
        object-fit: cover;
    }
}


