html,
body {
  padding: 0%;
  margin: 0%;
  height: 100%;
  width: 100%;
}
body {
  background: linear-gradient(
    90deg,
    rgba(21, 21, 21, 1) 0%,
    rgba(21, 21, 21, 1) 50%,
    rgba(255, 255, 255, 1) 51%,
    rgba(255, 255, 255, 1) 100%
  );
  background-position: 100%, 100%;
  background-size: 250%, 250%;
  transition: 0.3s;
}

h1,
h3 {
  font-family: "Roboto", sans-serif;
  padding: 0vh;
  margin: 0vh;
  transition: 0.7s;
}
h1 {
  font-size: 96pt;
  font-weight: 500;
  line-height: 1;
}
h3 {
  font-size: 24pt;
  font-weight: 400;
  line-height: normal;
}

.mainContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 100%;
  width: 100%;
}

.searchContainerParent{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

.searchContainer {
  margin: 2vh;
  transition: 0.7s;
}

.resultContainer{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 60%;
}

.resultContainer > .result{
  padding: 2vh;
  transition: 0.7s;
  min-height: 250px;
  border-radius: 10px;
  background-color: #d0d0d0;
}

.resultContainer > h3{
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 2rem;
  font-family: "Red Hat Display", sans-serif;
  font-optical-sizing: auto;
}

.titleContainer > h1{
  display: flex;
  justify-content: center;
  align-items: end;
  flex-direction: column;
  background: -webkit-linear-gradient(
    45deg,
    #00ffbe,
    #0089ff,
    #ff86ba,
    #e9acff
  );
  background-size: 300%, 300%;
  background-position: left;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: 0.7s ease-in;
}
.titleContainer > h1:hover {
  /* text-shadow: 1px 2px 10px rgb(8, 8, 8, 0.15); */
  transition: 0.7s ease-in;
  background-position: right;
  cursor: pointer;
}

*::-webkit-scrollbar,
*::-webkit-scrollbar-thumb {
  width: 10px;
  transition: 0.7s;
}

*::-webkit-scrollbar-thumb {        
  background-color: #151515;
}

.input{
  width: 25vh;
  background-color: #d0d0d0;
  color: #a3a3a3;
  font-family: "Roboto", sans-serif;
  padding: 0.15rem 0.2rem;
  min-height: 40px;
  border-radius: 10px;
  outline: none;
  border: none;
  line-height: 1.1;
  box-shadow: 0px 10px 20px -18px;
  text-align: center;
  transition: 0.7s ease-in-out;
}

.input[type=file]{
  width: 25vh;
  background-color: #d0d0d0;
  color: #a3a3a3;
  font-family: "Roboto", sans-serif;
  padding: 0.15rem 0.2rem;
  border-radius: 10px;
  outline: none;
  border: none;
  line-height: 1.1;
  box-shadow: 0px 10px 20px -18px;
  text-align: center;
  transition: 0.7s ease-in-out;
}
.input::file-selector-button {
  margin-right: 15px;
  height: 35px;
  margin-top: 1px;
  border: none;
  background: -webkit-linear-gradient(
    45deg,
    #00ffbe,
    #0089ff,
    #ff86ba,
    #e9acff
  );
  background-size: 300%, 300%;
  background-position: left;
  transition: 0.7s ease-in;
  padding: 10px 20px;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
}

input:focus {
  width: 45vh;
  border-radius: 6px;
  color: #151515;
  transition: 0.7s;
  outline: 1px solid #151515;
}

input:hover {
  outline: 1px solid rgb(131, 131, 131);
  width: 45vh;
  transition: 0.7s;
  background-position: right;
  cursor: pointer;
}

.input::file-selector-button:hover {
  transition: 0.7s;
  background-position: right;
  cursor: pointer;
}

.toggle-switch {
  position: fixed;
  right: 2.5%;
  top: 2%;
  transform: scale(0.5, 0.5);
  width: 100px;
  height: 50px;
  --light: #d8dbe0;
  --dark: #28292c;
  --link: rgb(27, 129, 112);
  --link-hover: rgb(24, 94, 82);
}

.switch-label {
  position: absolute;
  width: 100%;
  height: 50px;
  background-color: var(--dark);
  border-radius: 25px;
  cursor: pointer;
  border: 3px solid var(--dark);
}

.checkbox {
  position: absolute;
  display: none;
}

.slider {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.checkbox:checked ~ .slider {
  background-color: var(--light);
}

.slider::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  -webkit-box-shadow: inset 12px -4px 0px 0px var(--light);
  box-shadow: inset 12px -4px 0px 0px var(--light);
  background-color: var(--dark);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.checkbox:checked ~ .slider::before {
  -webkit-transform: translateX(50px);
  -ms-transform: translateX(50px);
  transform: translateX(50px);
  background-color: var(--dark);
  -webkit-box-shadow: none;
  box-shadow: none;
}

#github i{
  position: fixed;
  top: 2.75%;
  left: 7.5%;
  transition: 0.7s cubic-bezier(0.075, 0.82, 0.165, 1);
  background: -webkit-linear-gradient(
    45deg,
    #00ffbe,
    #0089ff,
    #ff86ba,
    #e9acff
  );
  background-size: 300%, 300%;
  background-position: left;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#github i:hover{
  transition: 0.7s cubic-bezier(0.075, 0.82, 0.165, 1);
  background-position: right;
}

/* GENERATED CARD STYLING */

.cardInformationContainer {
  display: grid;
  grid-template-columns: auto auto;
  gap: 10px;
  padding: 10px;
}

.cardInformationContainer > div {
  text-align: left;
  font-size: 12pt;
  font-weight: 300;
  font-family: "Roboto", sans-serif;
}



@media only screen and (max-width: 600px) {
  h1 {
    font-size: 72pt;
    font-weight: 500;
    line-height: 1;
  }
  h3 {
    font-size: 14pt;
    font-weight: 400;
    line-height: normal;
  }
  body{
    background-size: 300%, 300%;
  }
  .infoContainer {
    grid-template-columns: 100%;
  }
  .infoContainer > :nth-child(2){
    display: none;
  }
  .infoContainer > *{
    padding-top: 5%;
  }
}

#form{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

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

:root {
  --bg: #e3e4e8;
  --fg: #17181c;
  --c1: #00ffbe;
  --c2: #0089ff;
  --c3: #ff86ba;
  --c4: #e9acff;
}

.pl1, .pl2 {
  justify-content: space-around;
  font-size: calc(6px);
  z-index: -1;
}
.pl1__a, .pl1__b, .pl1__c, .pl2__a, .pl2__b, .pl2__c {
  border-radius: 50%;
  width: 1em;
  height: 1em;
  transform-origin: 50% 100%;
}

.pl1__a, .pl1__b, .pl1__c {
  animation: bounce1 1s linear infinite;
}

.pl2__a, .pl2__b, .pl2__c {
  animation: bounce2 2s linear infinite;
}

.pl3, .pl4 {
  justify-content: space-between;
}
.pl3__a, .pl3__b, .pl3__c, .pl3__d, .pl4__a, .pl4__b, .pl4__c, .pl4__d {
  width: 0.75em;
  height: 0.75em;
}

.pl3__a, .pl3__b, .pl3__c, .pl3__d {
  animation: bounce3 2s ease-in-out infinite;
  transform-origin: 50% 0;
}

.pl4 {
  align-items: flex-end;
}
.pl4__a, .pl4__b, .pl4__c, .pl4__d {
  animation: bounce4 2s linear infinite;
  transform-origin: 50% 100%;
}

.pl1, .pl2, .pl3, .pl4 {
  display: flex;
  margin: 1.5em;
  width: 6em;
  height: 6em;
}
.pl1__a, .pl2__a, .pl3__a, .pl4__a {
  background: var(--c1);
}
.pl1__b, .pl2__b, .pl3__b, .pl4__b {
  background: var(--c2);
  animation-delay: 0.1s;
}
.pl1__c, .pl2__c, .pl3__c, .pl4__c {
  background: var(--c3);
  animation-delay: 0.2s;
}

.pl3__d, .pl4__d {
  background: var(--c4);
  animation-delay: 0.3s;
}

/* Animations */
@keyframes bounce1 {
  from, to {
    transform: translateY(0) scale(1, 1);
    animation-timing-function: ease-in;
  }
  45% {
    transform: translateY(5em) scale(1, 1);
    animation-timing-function: linear;
  }
  50% {
    transform: translateY(5em) scale(1.5, 0.5);
    animation-timing-function: linear;
  }
  55% {
    transform: translateY(5em) scale(1, 1);
    animation-timing-function: ease-out;
  }
}
@keyframes bounce2 {
  from, to {
    transform: translateY(0) scale(1, 1);
    animation-timing-function: ease-in;
  }
  9%, 29%, 49%, 69% {
    transform: translateY(5em) scale(1, 1);
    animation-timing-function: linear;
  }
  10% {
    transform: translateY(5em) scale(1.5, 0.5);
    animation-timing-function: linear;
  }
  11%, 31%, 51%, 71%, 91% {
    transform: translateY(5em) scale(1, 1);
    animation-timing-function: ease-out;
  }
  20% {
    transform: translateY(2.5em) scale(1, 1);
    animation-timing-function: ease-in;
  }
  30% {
    transform: translateY(5em) scale(1.25, 0.75);
    animation-timing-function: linear;
  }
  40% {
    transform: translateY(3.75em) scale(1, 1);
    animation-timing-function: ease-in;
  }
  50% {
    transform: translateY(5em) scale(1.125, 0.875);
    animation-timing-function: linear;
  }
  60% {
    transform: translateY(4.375em) scale(1, 1);
    animation-timing-function: ease-in;
  }
  70% {
    transform: translateY(5em) scale(1.0625, 0.9375);
    animation-timing-function: linear;
  }
  85% {
    transform: translateY(5em) scale(1, 1);
    animation-timing-function: ease-in;
  }
  90% {
    transform: translateY(5em) scale(1.875, 0.125);
    animation-timing-function: ease-in-out;
  }
}
@keyframes bounce3 {
  from, 5%, 95%, to {
    transform: translateY(0) scaleY(1);
  }
  16.7% {
    transform: translateY(0) scaleY(8);
  }
  28.3%, 38.3% {
    transform: translateY(5.25em) scaleY(1);
  }
  50% {
    transform: translateY(2.625em) scaleY(4.5);
  }
  61.7%, 71.7% {
    transform: translateY(2.625em) scaleY(1);
  }
  83.3% {
    transform: translateY(0) scaleY(4.5);
  }
}
@keyframes bounce4 {
  from, 20%, 40%, 60%, 80%, to {
    transform: scaleY(1);
    animation-timing-function: ease-out;
  }
  10% {
    transform: scaleY(8);
    animation-timing-function: ease-in;
  }
  30% {
    transform: scaleY(4);
    animation-timing-function: ease-in;
  }
  50% {
    transform: scaleY(2);
    animation-timing-function: ease-in;
  }
  70% {
    transform: scaleY(1.5);
    animation-timing-function: ease-in;
  }
}
/* Dark theme */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #17181c;
    --fg: #e3e4e8;
  }
}
