@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Newsreader:ital,opsz,wght@0,6..72,200..800;1,6..72,200..800&family=Shojumaru&family=ZCOOL+KuaiLe&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Newsreader", serif;
}
body{
    background: radial-gradient(circle, #1b1f3a 0%, #0f111a 100%);
}
button{
    position: sticky;
    top: 20px;
    left: 30px;
}

.btn{
    
    width: 150px;
    height: 50px;
    font-size: 2vh;
    color: white;
    background: radial-gradient(circle, #1b1f3a 0%, #0f111a 100%);
             box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 15px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    
    display: block;
}
.btn a{
    text-decoration: none;
    color: white;

}
button:hover{
    background: rgba(6, 6, 84, 0.5);
    transform: translateY(-5px) translateX(5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}
.skills{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 100px auto;
    max-width: 900px;
    justify-content: center;
    
}

.skills i{
    font-size: 4rem;
    margin: 20px;
}
.stack{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 200px;
    height: 200px;
    border-radius: 10px;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    
}
.stack:hover{
    transform: translateY(-5px) translateX(5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.head{
    text-align: center;
    margin-top: 80px;
    margin-bottom: 20px;
}
.head h2{
    color: white;
    font-size: 3rem;
}
#java h5{
    position: relative;
    top: 15px;
}
#java img{
   margin-bottom: 10px;
}
#c h5{
    position: relative;
    top: 15px;
}
#figma h5{
    position: relative;
    top: 15px;
}
#git h5{
    position: relative;
    top: 15px;
}
#python h5{
    position: relative;
    top: 15px;
}
#javascript h5{
    position: relative;
    top: 15px;
   
}
.cp{
    position: relative;
    top: 15px;
    color: white;
    font-size: 30px;
    
}
#html{
    color: white;
    font-size: 30px;
}
#css{
    color: white;
    font-size: 30px;
}
.list{
    margin: 40px auto;
    max-width: 600px;
    padding: 30px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.list ul{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    font-size: 30px;
}
.list ul li{
    margin: 0;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.list ul li:hover{
    background: rgba(255,255,255,0.1);
}
.list ul li a{
    text-decoration: none;
    color: white;
}
h2{
    text-align: center;
    color: white;
    font-size: 3rem;
}

.projects{
    text-align: center;
    margin-top: 50px;
}

.projects h2{
    margin-bottom: 30px;
}
footer{
            position: sticky;
            bottom: 0px;
            color: white;
           background-color: rgba(0, 0, 0, 0.721);
           display: block;
           width: 100%;
           text-align: center;
           padding: 10px;
           
           
        }
footer p{
            font-size: 1.2rem;
            color: white;
            text-shadow: 0px 0px 0px whitesmoke;
        }
