html,
body {
    height:100vh;
}
body {
  margin: 0;
  display: grid;
  text-align: center;
  overflow: hidden;    
  background-color:#611187;
  background-image: linear-gradient(to right top, #611187, #7823a1, #8f33bc, #a743d8, #c054f4);  
  font-family: 'Comfortaa', cursive;
  position: relative;
}

.bodyPage {
  place-items: center;
  place-content: center;
}
nav{
  display: flex;
  width: 96%;
  margin: auto;
  padding: 20px 0;
  align-items: center;
  justify-content: space-between;
}
.logo{
  width: 200px;
  cursor: pointer;
}
.squares li{
  position: absolute;
  display: block;
  list-style: none;
  background: rgba(255, 255, 255, 0.1);
  animation: animate 20s linear infinite;
  bottom: -165px;
  width: 25px;
  height: 25px;
}
.squares li:nth-child(1){
  left: 26%;
  width: 90px;
  height: 90px;
  animation-delay: 0s;
}

.squares li:nth-child(2){
  left: 8%;
  width: 5px;
  height: 5px;
  animation-delay: 5s;
  animation-duration: 5s;
}

.squares li:nth-child(3){
  left: 10%;
  width: 15px;
  height: 15px;
  animation-delay: 10s;
}

.squares li:nth-child(4){
  left: 20%;
  width: 20px;
  height: 20px;
  animation-delay: 6s;
  animation-duration: 40s;
}

.squares li:nth-child(5){
  left: 35%;
  width: 80px;
  height: 80px;
  animation-delay: 2s;
}

.squares li:nth-child(6){
  left: 40%;
  width: 40px;
  height: 40px;
  animation-delay: 10s;
}

.squares li:nth-child(7){
  left: 55%;
  width: 200px;
  height: 200px;
}

.squares li:nth-child(8){
  left: 65%;
  width: 15px;
  height: 15px;
  animation-duration: 35s;
}

.squares li:nth-child(9){
  left: 70%;
  width: 25px;
  height: 25px;
  animation-delay: 20s;
  animation-duration: 20s;
}

.squares li:nth-child(10){
  left: 85%;
  width: 100px;
  height: 100px;
  animation-delay: 1s;
  animation-duration: 15s;
}

@keyframes animate {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 30%;
    -webkit-border-radius: 30%;
    -moz-border-radius: 30%;
  }

  100% {
    transform: translateY(-1000px) rotate(600deg);
    opacity: 0;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;  }
}

.card {
  margin-bottom: 5%;
  width: 360px;
  height: 490px;
  padding: 80px 0 0;
  border-radius: 10px;
  background:linear-gradient(to left , orange, tomato);
  box-shadow: 2px 4px 8px 2px rgba(0,0,0,0.3);
}


.card:hover {
  box-shadow: 2px 12px 24px 0px rgba(0,0,0,0.5);
  transition: .3s;
}

.cardImg {
  margin: 0 auto 10px;
  width: 140px;
  height: 180px;
  object-fit: contain;
}

h2 {
  color: #000000;
  margin: 0 0 6px;
}
#result {
  background: transparent;
  border: none;
}

input[type="text"] {
  font-size: 23px;
}

h3 {
  color: #0b0b0c;
  margin: 0 0 24px;
  font-weight: 400;
  font-size: 18px;
  align-self: stretch;
}

input,
button {
  display: block;
  height: 48px;
  width: 270px;
  margin: 0 40px;
  border-radius: 4px;
  font-size: 16px;
  font-family: inherit;
  outline: none;
  text-align: center;
}

input {
  border-width: 1px;
  border-color: rgba(0, 0, 0, 0.16);
  padding: 12px;
  margin-bottom: 8px;
}

input::placeholder {
  color: rgba(0, 0, 0, 0.24);
}

button {
  background: #9563ff;
  color: #f9f9f9;
  border: 0;
  cursor: pointer;
  transition: 0.175s;
}

button:disabled {
  background: #e1e0e8;
  color: #bbbac5;
  cursor: not-allowed;
}

button.secondary {
  background: transparent;
  color: #7e7d8a;
}

button[type="submit"] {
  margin-bottom: 8px;
}

.swiper {
  width: 100%;
}