.list {
  text-align: center;
  border: 10px solid blueviolet;
  width: 100%;
  height: 50%;
  background-color: blueviolet;
}

/* search the places here  */
.search {
  justify-content: center;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 50%;
}
*/ .rounded-box {
  background-color: lightgrey;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 1px;
  text-align: center;
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.rounded-box img {
  border-radius: 10px;
  width: 100%;
  height: auto;
}

.rounded-box .text {
  margin-top: 1px;
  text-align: left;
  justify-content: left;
  background-color: lightgray;
  padding: 10px;
}

.rounded-box .small-text {
  margin-top: 10px;
  text-align: left;
  font-size: 12px;
  color: gray;
}

/* hover up */
.hover-up {
  position: relative;
  transition: all 0.3s ease;
}

.hover-up:hover {
  top: -10px;
}
