body, html {
    margin: 0;
    padding: 20px 0; /* Add padding at the top and bottom */
    height: 100%;
    font-family: 'Times New Roman', Times, serif;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 40px); /* Adjust height to account for padding */
    text-align: center;
}

.center-image {
    width: 40%; /* Set the image width to 40% of its container */
    height: auto; /* Maintain the aspect ratio */
}

.centered-text {
    font-size: 2em;
    margin-top: 20px;
}
