* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #faf9f6;
    font-family: Arial, sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    padding: 20px;
    max-width: 100%;
}

img {
    max-width: 90%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
}

h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #1e3a8a;
    letter-spacing: 2px;
    text-shadow: 3px 3px 6px #ec4899;
}