/* style.css */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #333;
    margin: 0;
}

.crt-frame {
    width: 590px; /* Adjusted to fit image */
    height: 490px; /* Adjusted to fit image */
    background: #000;
    border: 20px solid #555;
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    width: 550px; /* Match image width */
    height: 450px; /* Match image height */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 10px;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.crt-frame::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 5px solid #333;
    border-radius: 10px;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
    z-index: 1;
}