/* Reset */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }

/* Background with limo image */
body {
height: 100vh;
font-family: 'Segoe UI', sans-serif;
background: url('https://images.unsplash.com/photo-1549921296-3ecf9f0b3e9b') no-repeat center center/cover;
display: flex;
justify-content: center;
align-items: center;
color: #fff;
}

/* Dark overlay */
.overlay {
position: absolute;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.75);
}

/* Container */
.container {
text-align: center;
z-index: 2;
animation: fadeIn 2s ease-in-out;
}

/* Logo */
.logo {
font-size: 3.5rem;
letter-spacing: 5px;
color: #d4af37;
animation: glow 2s infinite alternate;
}

/* Tagline */
.tagline {
margin-top: 15px;
font-size: 1.3rem;
opacity: 0.85;
}

/* Divider */
.divider {
width: 100px;
height: 2px;
background: #d4af37;
margin: 25px auto;
}

/* Subscribe */
.subscribe input {
padding: 12px;
width: 240px;
border: none;
border-radius: 5px;
}

.subscribe button {
padding: 12px 18px;
background: #d4af37;
color: #000;
border: none;
margin-left: 5px;
border-radius: 5px;
cursor: pointer;
transition: 0.3s;
}

.subscribe button:hover {
background: #b8962e;
}

/* WhatsApp Button */
.buttons {
margin-top: 20px;
}

.whatsapp {
display: inline-block;
padding: 12px 20px;
background: #25D366;
color: #fff;
text-decoration: none;
border-radius: 5px;
transition: 0.3s;
}

.whatsapp:hover {
background: #1ebe5d;
}

/* Socials */
.socials {
margin-top: 25px;
}

.socials a {
color: #d4af37;
text-decoration: none;
}

/* Animations */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(30px); }
to { opacity: 1; transform: translateY(0); }
}

@keyframes glow {
from {
text-shadow: 0 0 10px #d4af37;
}
to {
text-shadow: 0 0 25px #d4af37;
}
}

/* Responsive */
@media (max-width: 600px) {
.logo {
font-size: 2.2rem;
}

```
.subscribe input {
    width: 160px;
}
```

}
