* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    /* background: linear-gradient(120deg, #002f4b, #dc4225); */
    
    background-size: 200% 200%;
    animation: gradientAnimation 10s ease infinite; 
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 100vh; */
    color: #fff;
   
}
#gradi{
  	background: rgb(2 2 2 / 46%) url(zennova-home-landing-1.webp);
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    margin: auto;
    background-blend-mode: darken;
}
.profile {
    text-align: center;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.social-icons {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-icons a {
    width: 50px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    text-decoration: none;
    border-radius: 50%;
    transition: transform 0.3s;
}

.social-icons a:hover {
    transform: scale(1.2);
}

.social-icons img {
    width: 20px;
    height: 20px;
}

.container {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    /* margin-top: 250px; */
    max-width: 400px;
    width: 100%;
    animation: slideIn 1s ease-out;
    /* animation: fadeIn 2s ease-in-out, scaleUp 2s ease-in-out; */
    margin: auto;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleUp {
    from { transform: scale(0.8); }
    to { transform: scale(1); }
}

.profile img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
    animation: bounce 2s infinite;
    margin-top: 25px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

.profile h1 {
    font-size: 24px;
    margin-bottom: 5px;
    animation: slideIn 1s ease-out;
}

.profile p {
    font-size: 18px;
    margin-bottom: 20px;
    animation: slideIn 1s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.chat-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #28a745;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    margin-bottom: 20px;
    transition: background-color 0.3s;
    animation: fadeInButton 1.5s ease-in-out;
}

@keyframes fadeInButton {
    from { opacity: 0; }
    to { opacity: 1; }
}

.chat-button:hover {
    background-color: #218838;
}

.links {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 70px;
    padding: 10px 15px;
    background-color: #fff;
    color: #333;
    border-radius: 5px;
    margin: 5px 0;
    border-radius: 35px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
    animation: fadeInLinks 2s ease-in-out;
}

.link span {
    background-color: #007bff;
    padding: 10px 20px;
    border-radius: 25px;
    color: #fff;
    margin-left: 10px;
    height: 35px;
    
}

.link.location span { background-color: #0b8a9d; }
.link.instagram span { background-color: #c51679; }
.link.whatsapp span { background-color: #0f9d43; }
.link.tiktok span { background-color: #010101; }
.link.snapchat span { background-color: #bebb0d; }
.link.website span { background-color: #007bff; }
.link .phone span{background-color: #fff;}

.link:hover {
    background-color: #f1f1f1;
    transform: scale(1.05);
}

@keyframes fadeInLinks {
    from { opacity: 0; }
    to { opacity: 1; }
}

.instagram-icon{width:55px;}

h2 {
    font-size: 20px;
    margin: 20px 0 10px;
    animation: fadeInTitle 1s ease-in-out;
}

@keyframes fadeInTitle {
    from { opacity: 0; }
    to { opacity: 1; }
}

.link.phone {
    background-color: #007bff;
    color: #fff;
    justify-content: flex-start;
}


.translate-button {
    position: absolute;
    top: 20px;
    right: 70px;
    background-color: #007bff;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    animation: fadeInButton 1.5s ease-in-out;
}

.translate-button:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

.share-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #ff5733;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    animation: fadeInButton 1.5s ease-in-out;
}

.share-button:hover {
    background-color: #c70039;
    transform: scale(1.05);
}

.spider-web {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('spider-web.png');
    background-size: cover;
    display: none;
    animation: fadeInSpiderWeb 1s ease-in-out forwards;
}

@keyframes fadeInSpiderWeb {
    from { opacity: 0; }
    to { opacity: 1; }
}

.show-web {
    display: block;
}

.mobile.phone{width: 50px;;}