body,html {
    align-items: center;
    background: #000 url(http://flamingofilmservices.com/logo.jpg) 50%/contain no-repeat;
    color: #fff;
    display: flex;
    font-family: Montserrat, sans-serif;
    height: 100%;
    justify-content: center;
    margin: 0;
    overflow: hidden;
}

.container {
    animation: textMove 5s infinite alternate;
    background: rgba(0, 0, 0, .7);
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255, 102, 178, .5);
    max-width: 800px;
    padding: 30px;
    text-align: center;
    width: 80%;
}

@keyframes textMove {
    0% {
        transform: translateY(0);
    }
    to {
        transform: translateY(-10px);
    }
}

h1 {
    font-size: 2.5em;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .7);
}

h1, p {
    margin-bottom: 20px;
}

p {
    font-size: 1em;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, .5);
}

a {
    color: #ff66b2;
    text-decoration: none;
    transition: color .3s ease;
}

a:hover {
    color: #ff3385;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .container {
        width: 90%;
        padding: 15px;
    }

    h1 {
        font-size: 2em;
        text-align: center;
    }

    p {
        font-size: 1.1em;
    }
}
