html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* overflow: hidden; */
  color: rgba(0, 0, 0, 0.75);
  background-color: #fff;
}
h3 {
  font-size: 2em;
}

.spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.monitor {
  height: 100%;
}

.logo_text {
  font-family: "Prompt", sans-serif;
  color: #2d2d2d;
}

.logo {
  width: 200px;
  height: 200px;
}

.robot {
  display: flex;
  justify-content: center;
}
.outofscreen {
  display: none;
}
.category {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.emoji-row {
  display: flex;
  flex-wrap: wrap;
}

.emoji {
  margin: 5px;
}

.row {
  flex-direction: row !important;
}

.row > * {
  margin: 5px;
}

.swipe {
  top: 0px;
  position: absolute;
}

.cardContainer {
  width: 300px;
  height: 300px;
  position: relative;
}

.cardContainer2 {
  width: 251px;
  height: 377px;
  position: relative;
}

.card {
  position: relative;
  background-color: #fff;
  width: 300px;
  height: 300px;
  border-radius: 20px;
  box-shadow: black;
  background-size: cover;
  background-position: center;
}

.card2 {
  position: relative;
  background-color: #fff;
  width: 251px;
  height: 377px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
}

.pictureTest {
  background-image: url("../images/monitor.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 450px;
  height: 450px;
}

.pictureTest3 {
  background-size: contain;
  background-repeat: no-repeat;
  width: 450px;
  height: 450px;
}

@media only screen and (min-width: 768px) {
  .cardContainer {
    width: 500px;
    height: 500px;
  }

  .cardContainer2 {
    width: 427px;
    height: 644px;
  }

  .card {
    width: 500px;
    height: 500px;
  }

  .card2 {
    width: 427px;
    height: 644px;
  }

  .pictureTest {
    background-size: contain;
    background-repeat: no-repeat;
    width: 760px;
    height: 760px;
  }
  .pictureTest3 {
    background-size: contain;
    background-repeat: no-repeat;
    width: 760px;
    height: 760px;
  }
}

.cardContent {
  width: 100%;
  height: 100%;
}

.swipe:last-of-type {
}

.card h3 {
  position: absolute;
  bottom: 0;
  margin: 10px;
  color: #fff;
}

.infoText {
  width: 100%;
  justify-content: center;
  display: flex;
  color: #fff;
  animation-name: popup;
  animation-duration: 800ms;
}

.buttons {
  margin: 20px;
  display: flex;
  flex-wrap: wrap;
}
.button {
  color: #fff;
  padding: 20px;
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 30px;
  display: inline-block;
  border: 4px;
  border-color: white;
  font-family: "Inter", sans-serif;
  background: linear-gradient(
    90deg,
    hsla(170, 75%, 71%, 1),
    hsla(270, 75%, 71%, 1)
  );
}

@media (max-width: 625px) {
  .buttons {
    flex-direction: column;
  }
}

.buttons button {
  flex-shrink: 0;
  padding: 10px;
  border-radius: 5px;
  border: none;
  color: #fff;
  font-size: 18px;
  background-color: #9198e5;
  transition: 200ms;
  margin: 10px;
  font-weight: bolder;
  width: 160px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}

.buttons button:hover {
  transform: scale(1.05);
}

@keyframes popup {
  0% {
    transform: scale(1, 1);
  }
  10% {
    transform: scale(1.1, 1.1);
  }
  30% {
    transform: scale(0.9, 0.9);
  }
  50% {
    transform: scale(1, 1);
  }
  57% {
    transform: scale(1, 1);
  }
  64% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(1, 1);
  }
}
