div {
    position: relative;
    left: 0;
    width: 250px;
    border: 2px solid #333;
    background: linear-gradient(135deg, #00b894, #00a085);
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-family: Arial, sans-serif;
    color: white;
}

h1 {
    position: relative;
    left: 0;
    width: 1000px;
    font-family: 'Georgia', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: color 0.3s ease;
}

body {
    background: linear-gradient(45deg, #2d5ab8, #4a7bc8);
    font-family: Arial, sans-serif;
    margin: 20px;
}

img {
    width: 200px;
    border-radius: 10px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
}

img:hover {
    transform: scale(1.05);
}

input[type="button"] {
    background: #00b894;
    color: white;
    border: none;
    padding: 8px 16px;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

input[type="button"]:hover {
    background: #00a085;
}

#xyz {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 10px;
    border-radius: 8px;
    margin-top: 10px;
    font-weight: bold;
}