body {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: Tahoma;
    background-color: hsla(0, 0%, 77%, 0.281);
}


h1 {
    font-size: 5rem;
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
    font-style: italic;
}

.container {
    background-color: hsla(39, 84%, 64%, 0.781);
    border: 2px solid rgba(0, 0, 0, 0.397);
    padding: 2rem;
    margin-top: 100px;
    border-radius: 30px;
    box-shadow: 2px 2px 3px 1px hsla(0, 0%, 0%, 0.39);
}

.inputBox {
    padding: 15px;
    border-radius: 10px;
    border: 2px solid hsla(0, 0%, 0%, 0.411);
    margin-right: 5px;
}

.inputBox:focus {
    outline: none;
}

.inputButton {
    padding: 15px;
    width: 90px;
    border-radius: 5px;
    border: none;
    background-color: hsla(120, 46%, 49%, 0.671);
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
}

.inputButton:hover {
    background-color: hsla(120, 54%, 36%, 0.671) ;
}

ul {
    font-size: 1.5rem;
    
}

li {
    margin-bottom: 5px;
}

.resetButton {
    padding: 3px;
    width: 110px;
    border-radius: 5px;
    border: 1.5px solid;
    background-color: hsla(17, 80%, 47%, 0.664);
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
}

.resetButton:hover {
    background-color: hsla(17, 79%, 42%, 0.664) ;
}

.resetForm {
    display: flex;
    justify-content: end;
}

.trashButton {
    background-color: transparent;
    border: 2px solid;
    border-radius: 7px;
    float: right;
    margin-top: 7px;
    cursor: pointer;
}