body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #D8E8F0, #A0C4D8); /* Gradient background */
}

.container {
    position: relative;
    border: 10px solid #004080; /* Dark blue border */
    padding: 20px;
    background-color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px; /* Round corners */
}

.centered-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px; /* Round corners for the image */
}
