
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;700&display=swap');


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

body {
    font-family: 'Rajdhani', 'Consolas', 'Monaco', monospace;
    color: #ffffff;
    
    background-color: #000000; 
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
        url('tron-bg.gif');
    background-size: cover;
    background-position: center center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}



.profile {

    background-color: transparent;
    box-shadow: none;
    
    width: 90%;
    max-width: 500px;
    padding: 30px;
    text-align: center;
    border: none;
}

.profile h1 {
    font-size: 2.5rem;
    margin-bottom: 8px;
    font-weight: 700;
    
 
    color: #00FFFF; 
    text-shadow: 
        0 0 5px #00FFFF,
        0 0 10px #00FFFF,
        0 0 20px #00FFFF,
        0 0 30px #00FFFF;
}

.profile .bio {
    font-size: 1.2rem;
    color: #f0f0f0; 
}


.social-links {
    width: 90%;
    max-width: 500px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}


.social-link {
    display: block;
    text-decoration: none;
    

    background-color: transparent;
    color: #00FFFF;
    border: 2px solid #00FFFF;
    box-shadow: 0 0 10px #00FFFF;
    
    padding: 15px 20px;
    border-radius: 5px; 
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    
   
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.social-link:hover {
  
    background-color: #00FFFF;
    color: #000000;
    box-shadow: 
        0 0 15px #00FFFF,
        0 0 25px #00FFFF;
}

.social-link i {
    margin-right: 12px;
    width: 20px;
}
