body {
    font-family: "Lato", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #070707;
}
.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%; 
    max-width: 600px; 
    padding: 0 20px; 
    transform: scale(1.5);
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    width: 100%; 
}
.header {
    font-size: 6em;
    margin: 0;
    background: linear-gradient(120deg, #6495ED, #4169E1, #6A5ACD, #FF5555,#ff6f6f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 400% 400%;
    animation: gradientAnim 10s ease infinite;
}
@keyframes gradientAnim {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.search-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px; 
}

form {
    display: flex;
    overflow: hidden;
}

.search-input {
    width: 400px;
    padding: 10px;
    padding-left: 25px;
    font-size: 14px;
    border: none;
    outline: none;
    background-color: #151515;
    color: #d8d8d8;
    border-radius: 15px 0 0 15px;
    position: relative; 
}

.search-button {
    padding: 20px;
    border: none;
    background-color: #080808;
    color: white;
    cursor: pointer;
    transition: color 0.3s;
    border-radius: 0 15px 15px 0; 
}

.search-button:hover {
    background-color: #222222;
    transition: background-color 0.3s, box-shadow 0.3s;
    box-shadow: -5px 0px 5px rgba(0, 0, 0, 0.2);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-5px);
    }
    60% {
      transform: translateY(-5px);
    }
  }
  
  .search-button i {
    transition: transform 0.3s;
  }
  
  .search-button:hover i {
    animation: bounce 1s infinite;
  }
  
.icon-links {
    display: flex;
    gap: 34px;
    margin-top: 25px;
}

.icon-link {
    color: #818181;
    font-size: 32px;
    text-decoration: none;
}

.icon-link:hover i {
    background-image: linear-gradient(120deg, #6495ED, #4169E1, #6A5ACD);
    -webkit-background-clip: text;
    color: transparent;
    transform: scale(1.1);
}
.icon-link i {
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.icon-link:hover i {
    background-image: linear-gradient(120deg, #6495ED, #4169E1, #6A5ACD);
    -webkit-background-clip: text;
    color: transparent;
    transform: scale(1.2);
}

.icon-link {
    position: relative;
}

.icon-link::after {
    content: attr(data-tooltip);
    display: none;
    position: absolute;
    background-color: #2222221f;
    color: #fff;
    padding: 5px;
    border-radius: 5px;
    font-size: 14px;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.icon-link:hover::after {
    display: block;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #fff;
    padding: 10px;
    text-align: center;
    z-index: 1;
    letter-spacing: 1px;
}
