/* styles.css */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    background: #151515;
    color: white;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100vh;
    padding-top: 50px;
    position: relative;
}

.title {
    font-size: large;
    text-align: center;
    margin-bottom: 10px;
}

.rainbow {
    font-family: sans-serif;
    font-size: 6rem;
    background: linear-gradient(to right, #ff00f7, #cc00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.image {
    transition: filter 0.5s;
}

.image:hover {
    filter: blur(5px);
}

.image-container {
    position: relative;
    display: inline-block;
    margin: 5px; /* Add margin for spacing */
}

.text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s;
}

.easy-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s;
}

.wavy { 
    display: flex; /* Display from left to right */
    justify-content: center;
} 

.wavy span { 
    position: relative; 
    display: inline-block; 
    color: #fff; 
    font-size: 2em; 
    animation: animate 2s ease-in-out infinite; 
    animation-delay: calc(0.1s * var(--i)); 
} 

@keyframes animate { 
    0% { 
        transform: translateY(0px); 
    } 

    20% { 
        transform: translateY(-10px); 
    } 


    100% { 
        transform: translateY(0px); 
    } 
}

.socials {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    justify-content: center;
}

.socials img {
    height: 24px;
    margin: 0 10px;
    cursor: pointer;
}

.socials img:hover {
    animation: shake 0.5s linear infinite;
}
.footer {
    position: absolute;
    bottom: 10px;
  
}

.undersocial {
    position: absolute;
    top: 40px;
    left: 10px;
    display: flex;
    justify-content: center;
    display: inline-block;
    padding: 1px 15px;
    background: #353535;
    border-radius:8px;
    margin: 5px;
    cursor: pointer;
    text-decoration: none;
    color: white;
    color: inherit;
}
