* {
    box-sizing: border-box;
  }

.container {
    width: 520px;
    height: 700px;
    display: flex;
    flex-direction: column;
    margin: auto;
    font-family: 'Patrick Hand', cursive;
    text-align: center;
    background-image: url("travel2.jpg");
    background-size: cover;
    border-radius: 20px;
    border: 2px solid black;
}

h1 {
    font-size: 50px; 
    color:rgb(12, 11, 11);
    background-color: rgb(250, 234, 10);
    padding: 15px;
}

p {
    font-size: 35px; 
    color:rgb(0, 5, 73);
    text-align: left;
    margin-left: 50px;
    font-family: 'Patrick Hand', cursive;
}


input {
    align-items: center;
    justify-content: center;
    width: 400px;
    height: 35px;
    font-size: 25px;
    border-radius: 5px;
    border-color: rgb(0, 5, 73);
    font-family: 'Patrick Hand', cursive;

}

.add-item {
    font-size: 20px;
    cursor: pointer;
    background-color: #dff70e;
    color: rgb(5, 5, 5);
    text-align: center;
    padding: 5px;
    border-radius: 10px;
    border: 2px solid black;
    font-family: 'Patrick Hand', cursive;
}

input[type="text"], textarea {
    background-color : #a0e1fa; 
}

.add-item:hover {
    background-color: #0c67dd;
    color: rgb(253, 249, 6);
}

#myList li{
    font-size: 25px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: left;
    font-family: 'Patrick Hand', cursive;
    margin-left: 10px;
}


.delete, .change {
    float: right;
    font-family: "font-family: 'Patrick Hand', cursive";
    text-align: right;
    cursor: pointer;
    font-family: 'Patrick Hand', cursive;
}

.change-button, .delete-button {
    position: static;
    font-size: 18px;
    cursor: pointer;
    background-color: #32ec0d;
    color: rgb(0, 0, 0);
    text-align: center;
    margin-right: 20px;
    border-radius: 10px;
    border: 2px solid black;
    font-family: 'Patrick Hand', cursive;
}

.change-button:hover, .delete-button:hover {
    background-color: rgb(4, 255, 171);
    color: rgb(0, 0, 0);
    
}