body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: black;
    position: relative;
    height: 100vh;
    overflow: hidden;
    font-family: Arial, sans-serif;
    color: white;
}

.photo-frame {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    overflow: hidden;
    height: 100vh;
    width: auto;
    position: absolute;
}

.photo-frame img {
    height: 100%;
    object-fit: cover;
    animation: fade-in 1s ease-in-out;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.photo-background  {
    width: 100%;
}

.blurred {
    width: 100%;
    filter: blur(100px);
}