body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
}

#photo-container {
    position: relative;
    width: 500px;
    height: 500px;
}

#photo {
    width: 100%;
    height: 100%;
    filter: blur(30px); /* Start fully blurred */
    transition: filter 0.5s ease;
}
