body {
    font-family: 'Arial', sans-serif;
    background-image: url("png.jpg"); /* Replace 'png.png' with your actual image filename */
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    color: white; /* Set text color to white for contrast */
}

.container {
    background-color: rgba(102, 51, 153, 0.7); /* Semi-transparent purple background */
    padding: 20px;
    border-radius: 10px;
}

h1 {
    text-align: center;
}

#targetInput {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 300px;
    margin-bottom: 10px;
    color: #333; /* Ensure text is visible against the purple background */
}

button {
    background-color: #9370DB; /* Lighter purple for the button */
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px; /* Add margin to position the button below */
    width: 100%; /* Make the button span the width of the container */
}

button:hover {
    background-color: #800080; /* Darker purple on hover */
}

#results {
    background-color: #DDA0DD; /* Another shade of purple */
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
}

#results p {
    margin: 10px 0;
}

#results p strong {
    color: #333; /* Darker text for key information */ 
}
