h1{
    text-align: center;
    text-decoration: solid;
    text-shadow: 2px 2px 10px #f01eaa;
    font-family: 'Times New Roman', Times, serif;
    margin-top: 37px;
    font-size: 70px;
    color: #f3ddeb;
    font-weight: bold;
    animation: shine 2s infinite;
}

@keyframes shine {
    0% {text-shadow: 0 0 10px #d61997, 0 0 20px #ec34af;}
    50% { text-shadow: 0 0 20px #ff33aa, 0 0 30px #c92585;}
    100%{ text-shadow: 0 0 10px #dc34a4, 0 0 20px #d02798;}
    
}

body{
    background-image: url(image2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 100vh;

    margin: 0;
    padding: 0;


}

.search{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 11px;
    margin-top: 57px;

}

.search input{
    padding: 12px;
    border-radius: 5px;
    border: none;
    width: 300px;
}

.search button{
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

footer{
    color: white;
    background-color: rgba(0, 0, 0, 0.8);
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 2.5px 0;
}

#gifcontainer{
   display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 62px;
}