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; background-color: aliceblue; } .title { padding-top: 2%; display: flex; justify-content: center; } .thelist { background-color: azure; width: 100%; height: 100vh; /*notsure*/ } .typingform { display: flex; justify-content: end; } #list { margin: 1rem 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, .editbtn { width: 4px; height: 8px; border-radius: 50%; margin-top: 1.5%; cursor: pointer; } .deletebtn { background-color: orangered; } .editbtn { background-color: yellowgreen; }