body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0; /* Light gray background */
}

.container {
    text-align: center;
}

.einstein-image {
    max-width: 100%;
    height: auto;
    max-height: 80vh; /* Limits image height to fit screen */
    border: 2px solid #333; /* Optional: adds a border */
    
}

