header {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, #e2e2e2 0%, #CF9FFF 4%, #CF9FFF 96%, #e2e2e2 100%)    
}
body {
    margin: 0;
}
.Header_Title {
    width: 221.77px;
    height: 64.63px;
    text-align: center;
    font-size: small;
    font-family: Georgia, 'Times New Roman', Times, serif
}
.Header_Image {
    transform: scale(1.1);
}
.subheader a {
    display: block;
    color: black;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif
}
.subheader {
    display: flex;
    justify-content: space-evenly;
    background: linear-gradient(to right, #e2e2e2 0%,  #DBB8FF 4%, #DBB8FF 96%, #e2e2e2 100%);    
    border-bottom: 2px solid black;
    border-top: 2px solid black;
}
h1 {
    text-align: center;
    margin-bottom: 4px;
}
h3{
    font-weight: normal;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 4px;
}
h4 {
   text-align: center;
   margin-bottom: 4px;
   font-weight: normal;
   text-align: center;
   margin-top: 0px; 
}
.movie-review img {
    display: block;
    margin: auto;
}
.top_quote {
    text-align: center;
    font-size: large;
    font-weight: bolder;
    margin-top: 10px; 
    margin-bottom: 20px;
}
.bottom_quote {
    text-align: center;
    font-size: large;
    font-weight: bolder;
    margin-top: 0px; 
    margin-bottom: 20px;
}
.review-paragraph {
    text-align: justify;
    max-width: 1000px;
    margin: auto;
    font-size: larger;
    margin-top: 0px; 
    margin-bottom: 20px;
}

@media (max-width: 768px) {
  header {
        flex-direction: column;
        padding: 5px;
        text-align: center;
    }

    .Header_Image {
        transform: scale(1);
        margin-bottom: 10px;
    }

    .Header_Title {
        width: auto;
        height: auto;
        font-size: medium;
    }

    .subheader {
        display: flex;
        justify-content: space-around;
        padding: 5px 0;       
    }

    .subheader a {
        font-size: 14px;
        padding: 5px;
        display: inline;
    }

    .movie-review img {
        max-width: 300px;
        height: auto;
    }

    .review-paragraph {
        padding: 0 15px;
        font-size: medium;
    }

    .top_quote {
        font-size: 0.95rem;
        line-height: 1.4;
        padding: 0 12px;
        word-wrap: break-word;
    }
    .bottom_quote {
        font-size: 0.95rem;
        line-height: 1.4;
        padding: 0 12px;
        word-wrap: break-word;
    }

}
