body {
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #ffecd2 0%, #fcb69f 100%);
    font-family: 'Arial', sans-serif;
    overflow: hidden;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.title {
    color: #ff4081;
    font-size: 3em;
    text-shadow: 2px 2px #fff;
    margin-bottom: 20px;
    animation: pop 1s ease-in-out infinite alternate;
    text-align: center;
}
p {
    color: #555;
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
}


.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.center-photo {
    max-width: 80%;
    max-height: 60vh;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

#play-button {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 1.2em;
    background-color: #ff4081;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

#confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

@keyframes pop {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.05);
    }
}

