🌐 3D Glowing Button
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>3D Glow Button</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background: #1b2735;
background: linear-gradient(to bottom, #1b2735, #090a0f);
font-family: 'Poppins', sans-serif;
}
.three-d-glow-button {
padding: 15px 60px;
font-size: 20px;
font-weight: bold;
text-transform: uppercase;
color: #fff;
background: linear-gradient(135deg, #ff8c00, #ff0080);
border: none;
border-radius: 10px;
cursor: pointer;
position: relative;
box-shadow: 0 10px 20px rgba(255, 0, 128, 0.5), 0 10px 40px rgba(255, 140, 0, 0.5);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.three-d-glow-button:hover {
transform: translateY(-5px);
box-shadow: 0 15px 30px rgba(255, 0, 128, 0.7), 0 15px 50px rgba(255, 140, 0, 0.7);
}
.three-d-glow-button:active {
transform: translateY(2px);
box-shadow: 0 5px 10px rgba(255, 0, 128, 0.3), 0 5px 20px rgba(255, 140, 0, 0.3);
}
</style>
</head>
<body>
<button class="three-d-glow-button">Press Me</button>
</body>
</html>