@import url("https://fonts.googleapis.com/css2?family=DM+Mono:wght@300;400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans+Condensed:wght@300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Fredoka+One&family=Lobster&display=swap");
.card-list {
  display: flex;
  padding: 3rem;
  /* overflow-x: scroll; */
  scroll-snap-type: x mandatory;
  color: rgb(66, 43, 43);
  width: 70%;
}
.card {
  height: 350px;
  width: 400px;
  min-width: 250px;
  /* padding: 1.5rem; */
  border-radius: 16px;
  background: #ff6a88;
  box-shadow: -1rem 0 3rem #000;
  display: flex;
  flex-direction: column;
  transition: 0.2s;
  margin: 0;
  scroll-snap-align: start;
  clear: both;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-1rem);
}
.card:hover ~ .card {
  transform: translateX(130px);
}
.card:not(:first-child) {
  margin-left: -130px;
}
/* Card list Posts Design start */

.card-coverphoto {
  /* background-image: url(/Images/card-cover-photo.PNG); */
  background-size: cover;
  height: 150px;
}

.card-coverphoto img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  margin: 35%;
}
/* Card list Posts Design end */
.card-list h1 {
  font-family: "Open Sans Condensed", sans-serif;
  margin-left: 4px;
  font-size: large;
  margin-top: 0px;
}
.card-list p {
  font-family: "Kaisei Opti", serif;
  font-weight: bold;
  font-size: small;
  margin-top: -24px;
  padding: 0%;
  padding: 5px 10px 0px 5px;
}
.views-likes {
  display: flex;
  text-align: center;
}
.view {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
}

.likes {
  display: flex;
  flex: 1;
  text-align: center;

  justify-content: center;
  align-items: center;
}
.card-footer {
  font-size: small;
  background-color: #ff99ac;
  box-shadow: 10px 2px 10px #ff99ac;
  text-align: center;
  height: 20px;
  border-radius: 50%;
}
/* .views-likes h1:first-child {
  text-align: left;
}
.views-likes h1:last-child {
  text-align: right;
} */

/* Videos Logs Starts*/
.videoFrame {
  width: 300px;
  height: 200px;
}
.vframeTitle img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  margin-right: 10px;
}
.vframeTitle {
  display: flex;
  flex-direction: row;
  /* border: 1px solid white; */
  background-color: #ff6a88;
  box-shadow: 0.21rem 0 1rem #000;
  align-items: center;
  font-family: "Open Sans Condensed", sans-serif;
  font-size: small;
  color: rgb(66, 43, 43);
}
.vframe-footer {
  background-image: url(/Images/TravelLogLogo.PNG);
  opacity: 50%;
  background-repeat: none;
  height: 1px;
  margin-bottom: -3px;
  word-wrap: break-word;
}

.quotes {
  border-top: 2px solid white;
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.quote {
  margin: 20px;
  border-radius: 25px;
  overflow: hidden;
  border-top: 2px solid white;
  background: #ff6a88;
  box-shadow: -1rem 0 3rem #000;
  width: 380px;
}

.quote p {
  font-family: "Courier New", Courier, monospace;
}
.quote p:last-child {
  font-weight: bold;
  text-align: right;
}
/* Videos Logs Starts*/ Changes Here
