body{
    background-image: linear-gradient(black);
    color: white;
}

#link{
    border: 5px solid green;
    text-align: center;
    font-size: 15px;
    margin-top: 40px;
    border-radius: 35px;
    margin: 0 auto;
    padding: 30px;
    width: 200px;
    height: 30px;
    transition: all 0.4s ease;
}

#link:hover{

    transform: scale(1.2);
    box-shadow:
    0 0 15px #0f0,
    0 0 30px #0f0
    0 0 60px #0f0;
    background: rgba(0,255,0,0.15);
    color: white;
}
.links{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-top: 15px;
}
.links a{
    text-decoration: none;
    color: white;
    font-size: 20px;
    letter-spacing: 2px;
    width: 220px;
    padding: 15px;
    text-align: center;
    border-radius: 30px;
    border: 2px solid rgba(0,255,0,0.6);
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}
.links a:hover{
    transform: scale(1.2);
    box-shadow:
    0 0 15px #0f0,
    0 0 30px #0f0
    0 0 60px #0f0;
    background: rgba(0,255,0,0.15);
    color: white;
}
.glass-box{
    width: 80%;
    max-width: 700px;
    margin: 40px auto;
    padding: 30px;

    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(12px);

    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.4);

    box-shadow: 0 8px 32px rgba(0,0,0,0.25);

    transition: all 0.5s ease;
}
.glass-box:hover{
    transform: scale(1.02);
    box-shadow: 0 0 40px rgba(0,255,0,0.4);
}
.glass-box2{
    width: 80%;
    max-width: 700px;
    margin: 40px auto;
    padding: 30px;

    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(12px);

    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.4);

    box-shadow: 0 8px 32px rgba(0,0,0,0.25);

    transition: all 0.5s ease;
}
.glass-box2:hover{
    transform: scale(1.02);
    box-shadow: 0 0 40px rgba(0,255,0,0.4);
}