body {
    font-family: "open sans", sans-serif;
    text-align: center;
    background: white;
}

.container {
    max-width: 600px;
    margin: 50px auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    opacity: 0.9;
   
}

.container2 {
    background-color: #939D99;
    padding: 10px;
    border-radius: 8px; 
    border: 2px solid #384444; 
}

h1 {
    color: white;
}

h2 {
    color: #2A2A22;
}

p {
    color: #2A2A22;
}

input, button {
    padding: 12px;
    margin: 8px 0; 
    width: 95%; 
    border: 1px solid #ddd;
    border-radius: 5px;
}

.button {
    background: #939D99;
    color: white;
    cursor: pointer;
    transition: 0.1s;
}

.button:hover{
    background: #384444;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    background: #fff;
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.countdown {
    font-size: 20px;
    font-weight: bold;
    color: #ed4842;
}
.countdown1 {
    color: #2A2A22;
}

.delete-btn {
    background: #2A2A22;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    margin-left: 10px;
    border-radius: 5px;
    transition: 0.1s;
}

.delete-btn:hover {
    background: #e93737;
}

.background-image {
    position: fixed;
    inset: 0;  
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden; 
    min-height: 100%;
    min-width: 100%;
}

.background-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    user-select: none; 
    pointer-events: none; 
    
}
