body {
    background-color: black;
    color: white;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.188);
    width: 400px;
    margin: auto;
    padding: 17px;
    border-radius: 10px;
    box-shadow: 0 0 10px white;
    margin-top: 100px;
    border: 2px solid white;
}

.inputGroup {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

input[type="text"] {
    flex: 1;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.188);
    color: white;
    border: 3px solid white;
    border-radius: 5px;
    width: 80%;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

#addButton {
    padding: 10px 20px;
    background-color: green;
    color: white;
    border: 3px solid white;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bolder;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

#addButton:hover {
    background-color: rgb(0, 255, 0);
    transition: all 0.3s ease-in-out;
}

#addButton:not(:hover) {
    transition: all 0.3s ease-in-out;
}

#addButton:active {
    color: green;
    transform: scale3d(0.7, 0.7, 0.7);
    background-color: rgb(0, 0, 0);
    transition: all 0.3s ease-in-out;
}

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

li {
    display: flex;
    text-align: left;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    gap: 1rem;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.53);
    color: black;
    border-radius: 5px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.deleteButton {
    padding: 5px 10px;
    background-color: red;
    color: white;
    border: 3px solid darkred;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bolder;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.deleteButton:hover {
    background-color: rgb(116, 0, 0);
    border: 3px solid rgb(255, 0, 0);
    transition: all 0.3s ease-in-out;
}

.deleteButton:not(:hover) {
    transition: all 0.3s ease-in-out;
}

.deleteButton:active {
    color: red;
    transform: scale3d(0.7, 0.7, 0.7);
    background-color: rgb(0, 0, 0);
    transition: all 0.3s ease-in-out;
}