@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}
body {
  width: 100%;
  height: 100vh;
  font-family: "poppins", sans-serif;
  /* background: linear-gradient(
    to right,
    #6a82fb,
    #fc5c7d
  );  */
  background: #0f0c29; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #24243e,
    #302b63,
    #0f0c29
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #24243e,
    #302b63,
    #0f0c29
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.container {
  position: absolute;
  min-width: 380px;
  min-height: 450px;
  top: 35%;
  left: 50%;
  border: none;
  background: transparent;
  border-radius: 30px;
  text-align: center;
  margin-top: 100px;
  transform: translate(-50%, -50%);
  /* background: linear-gradient(
    to right,
    #0575e6,
    #00f260
  );  */
  background: linear-gradient(to right, #6a82fb, #fc5c7d);
}
h2 {
  padding: 20px;
  font-weight: bold;
  margin-top: 10px;
}
input[type="search"] {
  width: 280px;
  padding: 18px;
  border: none;
  border-radius: 20px;
  margin-top: 30px;
}
button {
  width: 60px;
  height: 50px;
  padding: 2px;
  margin: 2px;
  border: none;
  border-radius: 10px;
  background-color: rgb(15, 228, 15);
  cursor: pointer;
}
#task {
  border-radius: 30px;
  width: 280px;
  position: relative;
  background-color: #ffffff;
  padding: 20px 15px;
  margin-top: 20px;
  margin-bottom: 15px;
  left: 35px;
  display: none;
}
.task {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 20px;
  margin-bottom: 8px;
  padding: 15px 10px;
  cursor: pointer;
  
}
.task span {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 15px;
}
.task button {
  position: relative;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  height: auto;
  padding: 8px;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
}
