* {
    padding: 0;
    margin: 0;
    text-decoration: none;
}

.nav-content{
    display: flex;
    justify-content: space-around;
    list-style: none;
    width: 100vw;
    font-size: 30px;
    background-color: #C5C6C7;
    box-shadow: 0px 0px 4px 0px;
}

.footer{
    display: flex;
    justify-content: space-around;
    list-style: none;
    width: 100vw;
    font-size: 25px;
    background-color: #C5C6C7;
    box-shadow: 0px 0px 4px 0px;
    padding: 10px;
    padding-bottom: 30px;
    font-family: 'Grenze', serif;
}


.nav-content a {
    padding: 15px;
    color: black;
    font-family: 'Grenze', serif;
}

#nav-title {
    font-family: 'Grenze', serif;
}

.movie-grid{
    padding: 25px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 300px));
    width: 1540px;
}

.grid-image{
    max-height: 500px;
    max-width: 360px;
    box-shadow: black 1px 2px 2px 1px;
    margin-top: 35px;
}

.movie-title {
    width: 330px;
    padding-top: 5px;
    color: black;
    text-align: center;
    font-size: 20px;
}

.critique-area{
    display: inline-block;
    padding: 10px;
    padding-top: 15px;
    height: 100vh;
}

.critique-area p{
    font-size: 18px;
}

.review-photo{
    max-height: 500px;
    box-shadow: black 1px 2px 2px 1px; 
    border-radius: 15px;
}

.category-title{
    text-align: center;
}

.critique-review{
    text-align: center;
    font-size: 20px;
    max-width: 1900px;
}

.top-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

body{
    background: linear-gradient(to bottom, #E3E1E1, #CECBCB );
}

