html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
}

.text{
    color:rgb(255, 255, 255);
    text-align: center;
    padding: 2%;
}
.stext{
    color:rgb(236, 55, 80);
    text-align: center;
    padding: 2%;
}
body{
    margin:0;
    min-height:100vh;
    background-color: rgb(0, 0, 0);
    background-image: radial-gradient(
        500px circle at var(--x,50%) var(--y,50%),
    rgba(255, 255, 255, 0.12) 0%, 
    rgba(255, 255, 255, 0.03) 50%, 
    rgba(255, 255, 255, 0) 100%
    );
     background-attachment: fixed; 
}

.link{
    font-weight: bolder;
    color:rgb(255, 255, 255);
    text-align: center;
    text-decoration: none;
    margin: 0 10px;  
    transition: border 0.2s;
}
/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}
.win{
    padding: 10px 15px; 
    border: 2px solid #ffffff;
    box-shadow: 0 0 4px #ffffff, 0 0 12px #3b3b3b, 0 0 30px #353434;
    border-radius: 15px;
    font-size:16px;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color:rgb(255, 255, 255);
    background-color:rgb(0, 0, 0); 
    width: 50%;
    display: flex;  
    justify-content: space-between;
    align-items: center; 
}
.current-win{
    padding: 12px 20px; 
    border: 2px solid #ffffff;
    box-shadow: 0 0 4px #ffffff, 0 0 12px #3b3b3b, 0 0 30px #353434;
    border-radius: 15px;
    position: fixed;
    flex-direction: column;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-size:16px;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color:rgb(255, 255, 255);
    background-color:rgb(0, 0, 0); 
    width: 20%;
    max-width: 280px;
    gap: 8px; 
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: rgb(236, 55, 80);
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
    box-shadow: 0 0 8px rgb(236, 55, 80);
}
.pwin {
    padding: 25px; 
    border: 2px solid #ffffff;
    box-shadow: 0 0 4px #303030, 0 0 12px #3b3b3b, 0 0 30px #353434;
    border-radius: 15px;
    font-size: 16px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: rgb(255, 255, 255);
    background-color: rgb(0, 0, 0); 
    width: 50%;   
    display: flex;  
    flex-wrap: wrap; 
    justify-content: center;
    align-items: stretch; 
    gap: 25px; 
}
.vwin {
    padding: 25px; 
    border: 2px solid #ffffff;
    box-shadow: 0 0 4px #303030, 0 0 12px #3b3b3b, 0 0 30px #353434;
    border-radius: 15px;
    font-size: 16px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: rgb(255, 255, 255);
    background-color: rgb(0, 0, 0); 
    width: 50%;   
    display: flex;  
    flex-wrap: wrap; 
    justify-content: center;
    align-items: stretch; 
    gap: 25px; 
}

.project-cont{
    font-size:16px;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color:rgb(255, 255, 255);
    background-color:rgb(0, 0, 0); 
    display: flex; 
    justify-content: space-between;
    align-items: center; 
    width: 100%;
}

.blog-cont{
    font-size:16px;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color:rgb(255, 255, 255);
    background-color:rgb(0, 0, 0); 
    display: flex; 
    justify-content: space-between;
    align-items: center; 
    width: 100%;
}

.codeblock{
    background-color: #000000;
    border: 2px solid #ffffff;
    box-shadow: 0 0 4px #ffffff, 0 0 12px #3b3b3b, 0 0 30px #353434;
    width: 100px;
    padding: 1px;
    margin: 10px;
}

/* Dropdown button */
.dropdown .dropbtn {
    padding: 10px 15px; 
    border: 2px solid #ffffff;
    box-shadow: 0 0 4px #ffffff, 0 0 12px #3b3b3b, 0 0 30px #353434;
    border-radius: 15px;
    font-size:16px;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color:rgb(255, 255, 255);
    background-color:rgb(0, 0, 0);
}

/* Add a red background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: #ddd;
  color: rgb(0, 0, 0);
   font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
   font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  color: rgb(255, 255, 255);
  background-color:rgb(0, 0, 0);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
  color: rgb(0, 0, 0);
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}
#navText{
    padding: 10px 15px; 
    border: 2px solid #ffffff;
    box-shadow: 0 0 4px #ffffff, 0 0 12px #3b3b3b, 0 0 30px #353434;
    border-radius: 15px;
    font-size:16px;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

#logo{
    height: 50px;
    width: 50px;
    left:1%;
}

#headerd{
    display: flex;  
    justify-content: space-between;
    align-items: center; 
    border: 2px solid #ffffff;
    height: 80px; 
    padding: 0 2%;  
    border-radius:10px;
}

#aboutme {
    display: flex;
    flex-direction: column;  
    justify-content: center;
    align-items: center;    
    text-align: center;
}
#portfolio {
    display: flex;
    flex-direction: column;  
    justify-content: center;
    align-items: center;    
    text-align: center;
    width: fit-content;
}
#contacts {
    display: flex;
    flex-direction: column;  
    justify-content: center;
    align-items: center;    
    text-align: center;
}
#site {
    display: flex;
    flex-direction: column;  
    justify-content: center;
    align-items: center;    
    text-align: center;
}
#blogs {
    display: flex;
    flex-direction: column;  
    justify-content: center;
    align-items: center;    
    text-align: center;
}
#stardance {
    display: flex;
    flex-direction: column;  
    justify-content: center;
    align-items: center;    
    text-align: center;
    background-image:url("https://stardance.hackclub.com/assets/landing/header/stardance-logo-df399a7f.png") ;
}


.bio-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    padding-left: 20px;      
    width: 100%;
}

.portfolio-cont {
    display: flex;
    flex-direction: column; 
    align-items: center; 
    text-align: center;
    width: 90%;
    padding: 10px 15px; 
    text-autospace: 20px;
    border: 2px solid #ffffff;
    box-shadow: 0 0 4px #ffffff, 0 0 12px #3b3b3b, 0 0 30px #353434;
    border-radius: 15px;
}
.blogs-cont {
    display: flex;
    flex-direction: column; 
    align-items: center; 
    text-align: center;
    width: 90%;
    padding: 10px 15px; 
    text-autospace: 20px;
    border: 2px solid #ffffff;
    box-shadow: 0 0 4px #ffffff, 0 0 12px #3b3b3b, 0 0 30px #353434;
    border-radius: 15px;
}
.contact-cont {
    align-items: center; 
    padding-left: 20px;  
    padding-right: 20px;    
    width: fit-content;
    padding: 10px 15px; 

}

.site-cont {
    display: block;
    align-items: center; 
    text-align: center;
    padding-left: 20px;  
    padding-right: 20px;    
    width: 100%;
    padding: 10px 15px; 

}
.star-cont {
    display: block;
    align-items: center; 
    text-align: center;
    padding-left: 20px;  
    padding-right: 20px;    
    width: 100%;
    padding: 10px 15px; 

}
.portfolio-cont .text {
    width: 100%;
    margin: 5%;
}


.bio-content .text {
    text-align: left;
    padding: 0;
    margin-bottom: 15px;
}


.skills-list {
    color: rgb(255, 255, 255);
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin: 0;
    padding-left: 20px; 
    text-align: left;
}

.skills-list li {
    margin-bottom: 5px;
}

#clublink{
    color:rgb(236, 55, 80);
    text-align: center;
    text-decoration: none;
    margin: 0 10px;  
    transition: border 0.2s;
}

.wave-text span {
  display: inline-block;
  font-size: 40px;
  font-weight: bold;
  animation: wave 1s infinite ease-in-out;
  animation-delay: calc(0.1s * var(--i));
}

@keyframes wave {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
