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

.title {
   font-size: 10vw;
   text-align: center;
   color: rgb(255, 255, 255);
   margin-bottom: 5vh;
   transition: 0.35s ease;
   text-shadow: 2px 4px 6px rgb(0, 0, 0, 0.2);
}

.title:hover {
   transform: translateY(-5%) scale(1.03);
   font-weight: 800;
}

@media (orientation: portrait) {
   .title {
      position: relative;
      top: -10vw;
      font-size: 10vw;
      color: var(--text-primary);
      font-family: "Inter", sans-serif;
      text-align: center;
      text-transform: uppercase;
      border-radius: 0px 0px 5px 5px;
   }
}

.search-container {
   display: flex;
   width: 100%;
   text-align: center;
   justify-content: center;
   align-items: center;
}

.search-home {
   width: 40vw;
   height: 5vh;
   font-family: "Poppins", sans-serif;
   font-size: 16px;
   background: rgba(0, 0, 0, 0.578);
   border: 1px solid rgba(255, 255, 255, 0.279);
   -webkit-backdrop-filter: blur(10px);
   backdrop-filter: blur(10px);
   padding: 15px;
   padding-left: 50px;
}

.search-home:focus {
   width: 60vw;
}

input {
   padding: 7px;
   width: 550px;
   border-radius: 15px;
   background: var(--background-column);
   text-align: left;
   font-size: 24px;
   color: var(--text-primary);
   transition: 0.4s;
}

#particles-js {
   position: absolute;
   width: 100%;
   height: 100%;
   background-repeat: no-repeat;
   background-size: cover;
   background-position: 50% 50%;
   overflow: hidden;
}

.particles-js-canvas-el {
   z-index: 0;
   top: 0;
   left: 0;
   position: absolute;
   width: 100%;
   height: 100%;
   pointer-events: none;
}

#splash {
   color: var(--text-dark);
   margin-bottom: 1em;
   margin-top: -2em;
   padding: 0;
   font-family: "Poppins", sans-serif;
}

.main {
    display: block;
}
