body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    background-image: url("my_images/background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

h1 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
}

#webcam-container { 
    display: none; }

#image-display {
    width: 90vw;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#image-display img {
    width: 100%;
    max-height: 100%;
    object-fit: contain;
}

#prediction {
    position: fixed;       
    bottom: 0;           
    left: 0;     
    width: 100%;
    background-color: black;
    color: white;
    font-size: 48px;
    font-weight: bold;
    text-align: center; 
    z-index: 1000;
    padding: 10px 0;
}