/* Using system fonts for speed and a native feel */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #2d3436;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
}

.container:hover {
    transform: translateY(-5px);
}

h1 {
    margin-top: 0;
    font-weight: 700;
    color: #0984e3;
}

p {
    line-height: 1.6;
    color: #636e72;
}

img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1.5rem 0;
    display: block;
}
