
body {
    background: url('background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #f5f5f5;
    font-family: 'Playfair Display', serif;
    margin: 0;
    padding: 0;
}

nav {
    background-color: rgba(30, 30, 30, 0.85);
    padding: 1em;
    text-align: center;
}

nav a {
    color: #f5c6f7;
    margin: 0 1em;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

main {
    padding: 2em;
    max-width: 800px;
    margin: auto;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
}

footer {
    text-align: center;
    padding: 1em;
    background-color: rgba(30, 30, 30, 0.85);
    color: #777;
    position: fixed;
    width: 100%;
    bottom: 0;
}

@keyframes hypnotic-glow {
    0% {
        text-shadow: 0 0 5px #f5c6f7, 0 0 10px #f5c6f7, 0 0 20px #f5c6f7, 0 0 40px #f5c6f7;
    }
    50% {
        text-shadow: 0 0 10px #f5c6f7, 0 0 20px #f5c6f7, 0 0 30px #f5c6f7, 0 0 60px #f5c6f7;
    }
    100% {
        text-shadow: 0 0 5px #f5c6f7, 0 0 10px #f5c6f7, 0 0 20px #f5c6f7, 0 0 40px #f5c6f7;
    }
}

h1 {
    animation: hypnotic-glow 3s ease-in-out infinite;
    color: #f5c6f7;
    text-align: center;
    margin-bottom: 1em;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(245, 198, 247, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 10px 10px rgba(245, 198, 247, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(245, 198, 247, 0);
    }
}

.pulse-button {
    display: inline-block;
    padding: 1em 2em;
    color: #121212;
    background-color: #f5c6f7;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    animation: pulse 2s infinite;
    transition: background-color 0.3s ease;
}

.pulse-button:hover {
    background-color: #fff;
    color: #121212;
}
