@import url('https://fonts.googleapis.com/css2?family=Fira+Code&display=swap');
body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100vh;
    background-color: #121212;
    display: flex;
    justify-content: center;
    align-items: center;
}

#animation-container {
    position: fixed;
    width: 100%;
    height: 100%;
}

#spiral-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#spiral {
    position: relative;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 74, 191, 1) 0%, rgba(83, 109, 254, 0.8) 50%, rgba(0, 223, 196, 0) 100%);
    box-shadow: 0 0 50px 20px rgba(255, 74, 191, 0.5);
    animation: spiral-grow 2.5s ease-in-out forwards, spiral-vanish 1s ease-in-out 2.5s forwards;
  }
  
  .spiral-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 4px solid transparent;
    border-top: 4px solid rgba(255, 74, 191, 0.9);    
    border-bottom: 4px solid rgba(83, 109, 254, 0.9); 
    animation: spiral-spin 2.5s ease-in-out forwards;
  }

#ring1 {
    width: 50px;
    height: 50px;
    border-top-color: rgba(255, 74, 191, 0.9);   
    border-bottom-color: rgba(83, 109, 254, 0.9); 
}

#ring2 {
    width: 100px;
    height: 100px;
    animation-delay: 0.2s;
    border-top-color: rgba(83, 210, 254, 0.9);    
    border-bottom-color: rgba(255, 74, 134, 0.9);
}

#ring3 {
    width: 150px;
    height: 150px;
    animation-delay: 0.4s;
    border-top-color: rgba(255, 233, 74, 0.9);    
    border-bottom-color: rgba(121, 74, 255, 0.9);
}

#ring4 {
    width: 200px;
    height: 200px;
    animation-delay: 0.6s;
    border-top-color: rgba(135, 255, 174, 0.9);  
    border-bottom-color: rgba(30, 39, 97, 0.9);   
}


@keyframes spiral-grow {
    0% {
        width: 0;
        height: 0;
    }
    50% {
        width: 200px;
        height: 200px;
    }
    100% {
        width: 300vw;
        height: 300vh;
    }
}

@keyframes spiral-vanish {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}

@keyframes spiral-spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) rotate(1080deg);
        opacity: 0;
        width: 100vw;
        height: 100vw;
    }
}
@keyframes move-up-n-fade-out {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(-250px); opacity: 0; }
}
  
#greeting {
    position: relative;
    font-size: 150%;
    top: 0;
    z-index: 2;
    opacity: 0;
    animation: show-content 1s ease-in-out 5s forwards,move-up-n-fade-out 1s ease-in-out 7s forwards;;
}

#about {
    position: fixed;
    bottom: -100%;
    left: 27em;
    transform: translateX(-70%);
    width: 600px;
    color: #ffffff;  
    font-family: 'Fira Code', monospace;
    font-size: 20px;
    padding: 20px;
    border-radius: 15px;
    border: 2px solid rgba(255, 74, 191, 0.5);  
    box-shadow: 0px 0px 15px rgba(83, 109, 254, 0.6);  
    opacity: 0.95;
    animation: slide-up-box 1.2s ease-in-out 8s forwards;
  }
  
  #gnupg {
    position: fixed;
    bottom: -100%;
    left: 9em;
    transform: translateX(-70%);
    width: 90px; 
    color: #ffffff;  
    font-family: 'Fira Code', monospace;
    font-size: 20px;
    padding: 15px;
    border-radius: 15px;
    border: 2px solid rgba(83, 210, 254, 0.5);  
    box-shadow: 0px 0px 12px rgba(255, 74, 191, 0.6); 
    opacity: 0.95;
    animation: slide-up-gpg 1.2s ease-in-out 8s forwards;
    text-decoration: none;
  }
  
  #gnupg a {
    text-decoration: none;
    font-weight: bold;
    color: rgba(135, 255, 174, 0.9);  
    transition: color 0.3s ease;
  }
  
  #gnupg a:hover {
    color: rgba(255, 233, 74, 0.9); 
  }
  
  #social {
    position: fixed;
    bottom: -100%;
    right: 0;
    transform: translateX(-45%);
    width: 200px;
    color: #ffffff; 
    font-family: 'Fira Code', monospace;
    font-size: 20px;
    padding: 15px;
    border-radius: 15px;
    border: 2px solid rgba(121, 74, 255, 0.5); 
    box-shadow: 0px 0px 12px rgba(255, 74, 134, 0.6);
    opacity: 0.95;
    animation: slide-up-social 1.2s ease-in-out 8s forwards;
    text-decoration: none;
    flex-direction: column;
  }
  
  #social a {
    text-decoration: none;
    font-weight: bold;
    color: rgba(83, 210, 254, 0.9);  
    transition: color 0.3s ease;
  }
  
  #social a:hover {
    color: rgba(255, 74, 191, 0.9); 
  }
  
  
  @keyframes border-pulse {
    0% { border-color: rgba(255, 74, 191, 0.3); }
    50% { border-color: rgba(255, 74, 191, 0.7); }
    100% { border-color: rgba(255, 74, 191, 0.3); }
  }
  
.title { color: #1cb2b7; font-weight: bold; }
.label { color: #ec6d24; font-weight: bold; }
.red { color: #840000; }
.v1 { color: #ff0000; }

#profileimg {
    position: fixed;
    top: 3em;
    right: 3em;
    z-index: 2;
    opacity: 0;
    animation: show-content 1s ease-in-out 5s forwards;
    height:15.5rem;
    width:15.5rem;
    border-radius:10em;
    filter: drop-shadow(3px 3px 6px #000);
    transition:all .2s;
    flex-direction: column;
}

#profileimg:hover {
    transform:scale(1.05);
    filter:drop-shadow:(4px 4px 8px #000);
    border-radius:11em;
}

@keyframes show-content {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes slide-up-box {
    from { bottom: -100%; opacity: 0; }
    to { bottom: 50%; opacity: 1; }
    
}
@keyframes slide-up-gpg {
    from { bottom: -100%; opacity: 0; }
    to { bottom: 5%; opacity: 1; }
}
@keyframes slide-up-social {
    from { bottom: -100%; opacity: 0; }
    to { bottom: 40%; opacity: 1; }
}
