
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
   font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background:rgb(225, 225, 225) ;
    line-height: 1.5;
    font-size: 0.875rem;

}
button {
    border: none;
} 
p {
    margin-bottom: 1.25rem;
}
ul {
    list-style-type: none;
}

main {
    min-height: 100vh;
    display: grid;
    place-items: center;
}
.section-center {
    background: white;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(248, 228, 228, 0.986);
    padding: 2rem;
}
.alert {
    margin-bottom: 1rem;
    height: 1.25rem;
    display: grid;
    align-items: center;
    text-align: center;
    font-size: 0.7rem;
    border-radius: 0.25rem;
    text-transform: capitalize;
}
.alert-danger {
    color: #721c24;
    background: #f8d7da;
}
.alert-success {
    color: #155724;
    background: #d4edda;
}
.todo-form h3 {
margin-bottom: 1.5rem;
text-align: center;
}
.form-control { 
    display: flex;
    justify-content: center;
}
#todo {
    padding: 0.25rem;
    padding-left: 1rem;
    border-color: transparent;
    font-size: 1rem;
    flex: 1 0 auto;
}
.btn {
    text-transform: uppercase;
    background: transparent;
    color: black;
    padding: 0.375rem 0.75rem;
    display: inline-block;
    font-size: 0.875rem;
    border: 2px solid black;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}
.btn:hover {
    color: rgb(198, 233, 221);
}
.section {
    padding: 5rem 0;
}
.section-center {
    width: 90vw;
    margin: 0 auto;
    max-width: 35rem;
    margin-top: 8rem;
}
.submit-btn {
    border-color: transparent;
    flex: 0 0 5rem;
    display: grid;
    align-items: center;
    padding: 0.25rem;
    text-transform: capitalize;
    letter-spacing: 2px;
    cursor: pointer;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
}
.todo-container {
    margin-top: 2rem;
    visibility: hidden;
}
.show-container {
    visibility: visible;
}
.todo-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding: 00.25rem 1rem;
    text-transform: capitalize;
}
input {
    background: rgb(216, 215, 215);
    outline: none;
}
.clear-btn{
    border: none;
    color: #e2192d;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    
}
.edit-btn > img {
    height: 20px;
    background: none;

}
.delete-btn > img {
    height: 20px;
    background: none;

}

