* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;  
  font-family:Verdana, Geneva, Tahoma, sans-serif;
}
body {
    height: 100vh;
    background: linear-gradient(135deg, #8052ec, #d161ff);
}
.container {
    position: absolute;
    padding: 30px;
    border: 2px solid white;
    min-width: 450px;
    width: 40%;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}
#newTask {
    position: relative;
    padding: 30px;
    background-color: white;
    border-radius: 5px;
    box-shadow:0 15px 30px rgba(0, 0, 0, 0.3);
}
#newTask  input {
    position: relative;
    width: 70%;
    height: 40px;
    border: 2px solid #d1d3d4;
    padding: 10px;
    font-weight: bold;
    border-radius: 5px;
}
#newTask  input:focus {
    outline: none;
    border-color: #8052ec;
}
#newTask button {
    position: relative;
    height: 40px;
    padding: 10px;
    margin-left: 15px;
    border: none;
    background-color: #8052ec;
    font-weight: bold;
    border-radius: 5px;
    color: white;
    cursor: pointer;
}
#taskList{
      position: relative;
      background-color: white;
      box-shadow: 0, 0, 0, rgba(0, 0, 0, 0.3);
      padding: 30px;
      margin-top: 50px;
      border-radius: 5px;
      width: 100%;
}

.single-task {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #d1d3d4;
    margin: 10px 0;
    padding: 10px;
    cursor: pointer;
}
.single-task span {
    font-weight: bold; 
    font-size: 13px;
}
.single-task button {
     background-color: #8052ec;
     border: none;
     border-radius: 5px;
     height: 30px;
     color: white;
     cursor: pointer;
     padding: 5px;
}