/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/
*{
  box-sizing: border-box;
}
html body {
  padding: 0;
  margin: 0;
  font-family: Arial, sans-serif;
  scroll-behavior: smooth;
  background: url(background.jpg);
  background-size: cover;
}

.header {
  width: 100%;
  height: 10vh;
  background: #FFFFFF9C;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header h1 {
  padding: 5px;
  display: inline-block;
  text-transform: uppercase;
  font-family: 'Times New Roman', Times, serif;
  font-size: 30px;
  background: #000000FC;
  color: #02FF8A;
  position: relative;
  -webkit-box-shadow: 2px 2px 15px #CF08FF, -2px -2px 15px #08D7FF;
          box-shadow: 2px 2px 15px #CF08FF, -2px -2px 15px #08D7FF;
  -webkit-animation: animate .3s ease-in;
          animation: animate .3s ease-in;
}

.header img {
  padding: 0;
  margin: 5px;
  display: inline;
  border-radius: 5px;
  height: 50px;
  width: 50px;
  -webkit-box-shadow: 2px 2px 10px black;
          box-shadow: 2px 2px 10px black;
  background-size: cover;
  -webkit-filter: drop-shadow(2px 2px 5px black);
          filter: drop-shadow(2px 2px 5px black);
  -webkit-animation: animate .2s ease-in;
          animation: animate .2s ease-in;
}

.search {
  padding: 0;
  margin: 5px auto;
  width: 100%;
  top: 0;
  bottom: 0;
  z-index: 1;
  background: white;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#search {
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-right: 10px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.search-btn {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 5px;
  border-radius: 5px;
  cursor: pointer;
}

.search-btn svg {
  fill: #fff;
  width: 20px;
  height: 20px;
}

.search {
  padding: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #ccc;
  border-radius: 25px;
}

#search {
  outline: none;
  margin-right: 5px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 8px;
  border: none;
  border-radius: 30px;
}

.search-btn {
  background: none;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 3px 5px;
  cursor: pointer;
}

i {
  background: none;
  color: blue;
}

@-webkit-keyframes underline {
  0% {
    width: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  50% {
    width: 100%;
    left: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }

  100% {
    width: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes underline {
  0% {
    width: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  50% {
    width: 100%;
    left: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }

  100% {
    width: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@-webkit-keyframes animate {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }

  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes animate {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }

  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}


.header h1::after,
.header span::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 3px;
  background: -o-linear-gradient(45deg, #02FFFE, #FF0101, #01FFC0);
  background: linear-gradient(45deg, #02FFFE, #FF0101, #01FFC0);
  -webkit-animation: underline 2s infinite;
          animation: underline 2s infinite;
}

.container {
  background: transparent;
}

.search {
  width: 95%
}

.card {
  padding: 5px;
  margin: 5px;
  margin-bottom: 20px;
  height: 100vh auto;
  width: auto;
  border-radius: 15px;
  background: transparent;

}

.card-head {
  width: 50%;
  padding: 0;
  margin: 5px;
  text-transform: uppercase;
  text-align: center;
  -webkit-box-shadow: 2px 2px 2px #00000087, -2px -2px 2px #00000087;
          box-shadow: 2px 2px 2px #00000087, -2px -2px 2px #00000087;
  background: #FFFFFF85;
  color: rgba(0, 255, 254, 1);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.99);
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.card-body {
  width: 100% auto;
  height: auto;
  padding: 0;
  margin: 0;
  padding-bottom: 10px;
  text-align: center;
  border-radius: 15px;
  border: 2px double black;
  background: #FFFFFF9C;
  -webkit-backdrop-filter: blur(50px);
          backdrop-filter: blur(50px);
}

.card .card-body .img {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 0;
  margin: 0;
  overflow: scroll;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}


.img img {
  padding: 10px;
  width: 100%;
  height: auto 60vh;
  scroll-snap-align: center;
  border-radius: 20px;
  aspect-ratio: 16/9;
}

.card-body p {
  font-family: Georgia, 'Times New Roman', Times, serif;
  text-align: start;
  padding: 5px;

}

.details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.button {
  background-color: #000000;
  color: #fff;
  width: 8.5em;
  height: 2.9em;
  border: #3654ff 0.2em solid;
  border-radius: 11px;
  text-align: right;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.button:hover {
  background-color: #3654ff;
  cursor: pointer;
}

.button svg {
  width: 1.6em;
  margin: -0.2em 0.8em 1em;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.button:hover svg {
  -webkit-transform: translateX(5px);
      -ms-transform: translateX(5px);
          transform: translateX(5px);
}

.text {
  margin: 0 1.5em;
  font-family: 'Times New Roman', Times, serif;
  font-weight: bolder;
  font-size: 15px;
  text-transform: capitalize;
}

.card-body h3 {
  padding: 10px;
  width: 100%;
  border-right: 3px solid black;
  text-decoration: underline;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-style: italic;
}

@media screen and (max-width: 768px) {
  .card-head {
    width: 95%;
  }

  .details {
    display: block;
  }

  .img img {
    display: block;
    width: 100% auto;
    height: 60vh;
  }

  .text {
    margin: 0;
    text-align: center;
  }

  .card-body h3 {
    border-right: hidden;
    padding: 5px;
  }
}


span {
  color: rgba(6, 255, 134, 1);
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 1);
  font-family: 'Times New Roman', Times, serif;
  font-weight: bold;
  font-style: italic;
}

code {
  background: #00EDFF;
}

footer {
  color: white;
  text-align: center;
  font-family: 'Times New Roman', Times, serif;
  text-transform: capitalize;
}

footer p a {
  color: #01FFE7;
}

.watermark {
  background: none;
}
