*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;

}

body {
    background: url('bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    display: flex;
    width: 100%;
    
}
.container{
    background-color: white;
    width: 350px;
    margin: 100px auto;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-radius: 20px;
    text-align: center;
}
.container h1{
    color: #333;
    margin-bottom: 20px;
    font-size: 24px;
}
.container form{
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
        
}

input, button {
    padding: 8px 10px;     
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 15px;
    outline: none;
    &:focus {
        border-color: #333;
    }
    &:hover {
        background-color: #ebe5e5;
    }

}

button {
    background-color: #333;
    color: white;
    cursor: pointer;
    transition: background-color 0.2s ease;
    &:hover {
        background-color: #555;
    }
}

.container h2{
    margin-top: 20px;
    font-size: 20px;
}

ul {
    list-style: none;
    margin-top: 10px;
}

li {
    background: #81b160;
    padding: 10px;
    margin: 5px 0;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.delete-btn {
    background: #333;
    color: white;
    border: none;
    padding: 5px;
    cursor: pointer;
    border-radius: 4px;
}

.delete-btn:hover {
    background: #a0ac95;
}
.edit-btn {
    color: #333;
    border: none;
    color: white;
    padding: 5px;
    cursor: pointer;
    border-radius: 4px;
    margin-right: 5px;
    margin-bottom: 5px;
}

.edit-btn:hover {
    background: #a0ac95;
}
