* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #eaeaea, #f9f9f9);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
}

.container {
    text-align: center;
}

.text {
    font-size: 48px;
    color: #222;
    margin-bottom: 20px;
}

.image {
    max-width: 300px;
    width: 100%;
    height: auto;
}

