body {
    font-family: Arial, sans-serif;
    background-color: rgba(11, 204, 230, 0.512);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    /* display: flex;
    justify-content: space-between; */
    background-color: white;

}

label {
    font-weight: bold;
}

input[type="text"] {
    width: 70%;
    padding: 10px;
    margin-bottom: 10px;
}

button {
    background-color: #0074d9;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

.result {
    margin-top: 10px;
}

#color-display-area {
    background-color: rgb(0, 0, 0);
    width: 200px;
    /* Adjust the width as needed */
    height: 100px;
    /* Float the color display area to the left */
    margin: 0 auto
}