/* for every page */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  margin-bottom: 20px;
  background-color: teal;
  color: #fff;
}

.logo {
  display: flex;
  font-size: 2em;
}

.navtab {
  display: flex;
  font-size: 1.5em;
  color: #fff;
}


/* for review.html */
#main-div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
  }
  
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid teal;
    border-radius: 10px;
    width: 200px;
    height: 200px;
    margin: 10px;
    padding: 15px;
}

.new-review input{
  margin: 5px;
}

.new-review button {
  margin: 5px;
  width: 80px;
  height: 30px;
  color: white;
  background-color: teal;
  border: 2px solid;
  border-radius: 8px;

}

.your-review {
  width: 400px;
  height: 200px;
}