* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    height: 100%;
    background-color: #111;
}

h1 {
    font-size: 3rem;
    font-weight: 50;
    margin: 1rem 0 3rem;
    text-align: center;
    color: #fff;
    font-family: "hind", sans-serif;
}

.styling {
    font-weight: 800;
    color: lime;
}

.input-div {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.input-div .input {
    padding: 0.5rem 1rem;
    height: 50px;
    outline: none;
    border: none;
    background-color: #fff;
    width: 450px;
    font-size: 1.15rem;
    margin: 0.25rem;
    border-radius: 25px;
}

.addButton {
    height: 50px;
    width: 50px;
    border-radius: 25px;
    outline: none;
    border: none;
    color: #fff;
    margin: 0.25rem;
    background-color: lime;
    cursor: pointer;
}

.addButton:hover {
    opacity: 0.7;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 2rem;
}

.item {
    padding: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 4px solid #fff;
}

.item-input {
    background: none;
    outline: none;
    color: #fff;
    border: none;
    width: 350px;
    font-size: 1.4rem;
}

.editButton {
    font-size: 1.4rem;
    margin: 0 0.5rem;
    font-family: "Hind", sans-serif;
    background: none;
    outline: none;
    color: lime;
    border: none;
    cursor: pointer;
}

.removeButton {
    font-size: 1.4rem;
    font-family: "Hind", sans-serif;
    background: none;
    outline: none;
    color: #e00;
    border: none;
    cursor: pointer;
}
