body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    /* background-color: #ffe6f2; */
    background-image: url("img/bg.jpeg");
    color: #4a004e;
}

#container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    
}

.scene {
    max-width: 600px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}



.img-container {
    width: 100%;
    max-width: 400px;
    height: 300px;
    margin: 0 auto 20px auto;
    overflow: hidden;
    border-radius: 8px;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h1 {

    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #ff4081;
    animation: glow 1.5s infinite alternate;

}

h1.glow {

    animation: glow 1.5s infinite alternate;

}

@keyframes glow {
    from {
        text-shadow: 0 0 10px #ff4081, 0 0 20px #ff4081, 0 0 30px #ff4081, 0 0 40px #ff4081, 0 0 50px #ff4081, 0 0 60px #ff4081, 0 0 70px #ff4081;
    }
    to {
        text-shadow: 0 0 20px #ff4081, 0 0 30px #ff4081, 0 0 40px #ff4081, 0 0 50px #ff4081, 0 0 60px #ff4081, 0 0 70px #ff4081, 0 0 80px #ff4081;
    }
}

p {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #ff4081;
    animation: glow 1.5s infinite alternate;
}

button {
    background-color: #ff4081;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 10px;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #e60073;
}

form {
    margin-top: 20px;
}

input[type="text"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    width: calc(100% - 22px);
    margin-bottom: 10px;
}

input[type="submit"] {
    background-color: #ff4081;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

input[type="submit"]:hover {
    background-color: #e60073;
}



.glitch {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    text-shadow: 0.05em 0 0 var(--neon-pink);
    animation: glitch 1s infinite;
}