body, html { font-size: 16px; margin: 0; padding: 0; box-sizing: border-box; } body { width: 100%; height: 100%; } .container { width: 70%; height: 100%; margin: 0 auto; } .title { background-color: pink; padding-top: 2%; display: flex; justify-content: center; } .thelist { background-color: azure; width: 100%; height: 100vh; /*notsure*/ } .typingform { background-color: aliceblue; display: flex; justify-content: end; } #list { margin: 0 auto; background-color: beige; border: 1px solid black; padding: 1.5% 4%; width: 50%; } li { display: flex; flex-direction: row; justify-content: space-between; margin-bottom: 1.5%; } .deletebtn { width: 4px; height: 4px; background-color: orangered; border-radius: 50%; margin-top: 1.5%; cursor: pointer; }