body {
    font-family: Arial, sans-serif;
    background-size: cover; /* Ensures the image covers the entire container */
    background-position: center;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
   
}
.container {
    background-image: url('https://imgs.search.brave.com/fsBedIkezQuzp0DvMuzAvCJ2uvesQHa8WWta2puLmak/rs:fit:500:0:0:0/g:ce/aHR0cHM6Ly9pLnBp/bmltZy5jb20vb3Jp/Z2luYWxzL2U1LzBk/LzQ3L2U1MGQ0N2I3/ODFmODJmYjE4NWI4/ZDE3Yjg3ZDA3YTUy/LmpwZw');
    background-size: cover; /* Ensures the image covers the entire container */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    background-position: center; /* Centers the image */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
    /* Optional: Add a fallback background color */
    background-color: rgba(255, 255, 255, 0.8); /* Fallback color for older browsers */
}


h1 {
    color: #ad1515;
}

input[type="text"] {
    width: calc(100% - 20px); /* Subtracting total horizontal padding */
    padding: 10px;
    margin: 10px 0; /* Keep vertical margin */
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Ensures padding is included in the width */
}


button {
    background-color: #8063a8;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

button:hover {
    background-color: #ab8df1;
}

#message-el {
    margin: 10px 0;
    color: #ff562215;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin: 10px 0;
    text-align: left;
}

a {
    text-decoration: none;
    color: #ab8df1;
}

a:hover {
    text-decoration: underline;
}

.remove-btn {
    margin-left: 10px;
    color:  white;
    cursor: pointer;
}
