* {
    margin: 0;
    padding: 0;
}

:root {
    --title-color: #1E1E1E;
}

body {
    background-color: #F5EBDC;
}

h2{
    margin: 1% 0% 1% 10%;
    font-size: 2.4rem;
}


.item {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 2%;
    width: 98vw;
    height: 100vh;
}

.review {
    background-color: white;
    width: 80%;
    border-radius: 10px;
    margin-bottom: 1%;
    box-shadow: #1E1E1E 1px 2px 5px;
    padding: 0.5%;
}

.review-filter {
    margin-left: 10%;
    margin-bottom: 2%;
}

.review-filter label {
    margin-right: 0.5em;
}

.review-filter select {
    padding: 0.3em;
    font-size: 1em;
}

.no-reviews{
    margin-left: 10%;
}

h2{
    /*color: black;*/
}

.item p {
    color: #414141;
}



@media only screen and (max-width: 450px){
    .review{
        width: 95%;
        margin-bottom: 3%;
    }
}