```
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Glowing Pink Website</title>
<style>
body {
background-color: #f7f7f7;
font-family: Arial, sans-serif;
font-weight: bold;
color: #fff;
}
.container {
max-width: 800px;
margin: 40px auto;
padding: 20px;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 50px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
font-size: 36px;
margin-bottom: 10px;
}
p {
font-size: 18px;
margin-bottom: 20px;
}
.glow-button {
background-color: #ff69b4;
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 50px;
cursor: pointer;
transition: 0.3s;
}
.glow-button:hover {
background-color: #ff99cc;
box-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
}
.glow-button:active {
background-color: #ff69b4;
box-shadow: 0 0 10px rgba(255, 105, 180, 0.3);
}
.animated {
animation: glow 2s infinite;
}
@keyframes glow {
0% {
box-shadow: 0 0 10px rgba(255, 105, 180, 0.1);
}
50% {
box-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
}
100% {
box-shadow: 0 0 10px rgba(255, 105, 180, 0.1);
}
}
</style>
</head>
<body>
<div class="container">
<h1>Welcome to the Glowing Pink Website!</h1>
<p>This website has a lot of styles, maximum border radius, light background, pink buttons, white font, glows, and animations.</p>
<button class="glow-button animated">Click me!</button>
</div>
</body>
</html>
```