#tagCloud {
    display: none;
}
#resultsList {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}
#resultsList li {
    margin-bottom: 25px;
}
#resultsList p {
    padding: 0;
    margin: 0;
}
input[type="search"] {
    width: 100%;
}
  #logo-intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: white;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1s ease-out;
  }

  #logo-intro img {
    width: 100px;
    height: 100px;
    transform: scale(0.5);
    opacity: 1;
    transition: transform 2s ease, opacity 1s ease-out;
  }

  #logo-intro.fade-out {
    opacity: 0;
    pointer-events: none;
  }

  #logo-intro.fade-out img {
    transform: scale(1.8);
    opacity: 0;
  }