*{
    color: rgb(255, 255, 255);
    background-repeat: no-repeat;

    font-family: 'Inter', sans-serif;
}


body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    min-width: 100vw;
    background-color: #111111;
    
    overflow: hidden;
}

.page-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    
    box-sizing: border-box;
   
}

#main{
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 20px 40px;
    max-width: 50%;
    width: 35rem;
    /* border: 1px solid #535253; */
    background: radial-gradient(70% circle at center, #202020 0%, #111111 100%) ;
     box-shadow:0 8px 32px 0 rgba(0, 0, 0, 0.37);

   

}



.hero-header{
    margin-top: 35px; 
    margin-bottom: 30px;
    text-align: center;
    
}

.hero-header a{
    text-decoration: none;
}

.hero-header a:hover{
     text-shadow: 0 0 8px rgba(255, 255, 255, 0.6), 
                  0 0 20px rgba(255, 255, 255, 0.2);
}

.subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  font-style: italic;
  margin-top: 5px;
}

#divider1{
    border: 0;
    height: 1px;
    margin-top: 20px;
    
    background: linear-gradient(to right, rgba(255,255,255,0.2), rgba(255,255,255,0));
   
}

#divider2{
    border: 0;
    height: 1px;
   
    background: linear-gradient(to left, rgba(255,255,255,0.2), rgba(255,255,255,0));
}

#social-link{
    display: flex;
    justify-content: center;
    margin-top: 35px ;
    padding: 0;
    gap: 20px;

    
}

#social-link img {
    
    height: 30px;
    filter: invert(1) brightness(0.8); 
  transition: filter 0.3s ease-out, transform 0.3s ease-out;
    
}

#social-link img:hover {
    filter: invert(1) brightness(1)
           drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
   }

#intro{
    font-weight: 300;
    line-height: 1.6;
    color: #b0b0b0;
    text-align: center;
    margin-bottom: 16px;
}

#nav{
    display: flex;
    justify-content: center;
    
}

#navbar{
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    
    padding: 0;
    
    width: 100%;

    gap:20px;
    margin: 0;
    
   
   
}



#navbar a{
    text-decoration: none;
   
    font-size: 0.8rem;
    font-weight: 900;
    color:#a0a0a0;
    transition: color 0.3s ease-out;
}

#navbar a:hover{
    color: white;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6), 
               0 0 20px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);

}











