* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Change the link color to #111 (black) on hover */

html,
body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

body {
  justify-content: space-evenly;
  align-items: center;
  background: linear-gradient(0deg, rgb(150, 185, 181), rgb(118, 144, 103)) no-repeat;
}

.dashboard {
  display: flex;
}
/*  */
 
#swiper {
  height: 70vh;
  aspect-ratio: 2 / 3;
  perspective: 1000px;
  perspective-origin: center 50%;
  transform-style: preserve-3d;
  position: relative;
}

.card {
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  transform: translateZ(calc(-30px * var(--i))) translateY(calc(-20px * var(--i))) rotate(calc(-4deg * var(--i)));
  filter: drop-shadow(2px 2px 20px rgba(0, 0, 0, 0.5));
  cursor: pointer;
  user-select: none;
  transition: transform 0.5s;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

#like,
#dislike {
  font-size: 16vh;
  border-radius: 50%;
  padding: 20px;
  position: relative;
  z-index: 1;
  animation-name: animation1;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
  /* don't run animation at the beginning */
  animation-play-state: paused;
}

#like.trigger,
#dislike.trigger {
  animation-name: animation2;
}

#like {
  color: red;
  background-color: rgba(255, 255, 255, 0.5);
}

#dislike {
  color: #ccc;
  background-color: rgba(0, 0, 0, 0.5);
}

@keyframes animation1 {

  0%,
  100% {
    opacity: 0.2;
  }

  50% {
    opacity: 1;
  }
}

@keyframes animation2 {

  0%,
  100% {
    opacity: 0.2;
  }

  50% {
    opacity: 1;
  }
}

li a {
  margin: 0;
  display: block;
  color: white;
  text-align: center;
  padding: 15px 40px;
  text-decoration: none;
}
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
}

li {
  float: left;
}

li a:hover {
  background-color: #111;
} 

.textbox {
  color: whitesmoke;
  font-family: arial;
  padding: 10px;
  margin: 10px;
}

.flex-container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.flex-child {
  flex: 1;
}  

.flex-child:first-child {
  margin-right: 10px;
} 

html,
body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

body {
  justify-content: space-evenly;
  align-items: center;
  background: linear-gradient(0deg, rgb(150, 185, 181), rgb(118, 144, 103)) no-repeat;
}

img {
  margin: 20%;
  position: relative;
  margin-right: 2rem;
}