* {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
}

html,
body {
  background-color: rgb(29, 29, 51);
  color: white;
}

/* #myVideo {
  bottom: 0;
  height: 100vh;
  left: 0;
  object-fit: cover;
  position: fixed;
  right: 0;
  top: 0;
  width: 100vw;
  z-index: -1;
} */

.header {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: center;
  position: relative;
  top: 60px;
}

#pink-name {
  color: rgb(255, 174, 174);
}

.listEl {
  border-bottom: 2px solid rgb(191, 78, 78);
  color: white;
  padding-bottom: 5px;
}

.nameInput {
  max-width: 230px;
}

h3 {
  font-size: 16px;
}

.submitIntro {
  animation: none;
  background: rgb(195, 18, 36);
  border-radius: 25px;
  font-weight: 500;
  padding: 5px 15px;
}

#submitIntro:hover {
  background: rgb(139, 1, 14);
  color: white;
  letter-spacing: 0px;
}

.resetBtn {
  animation: none;
  backdrop-filter: blur(20px);
  background: rgba(24, 20, 30, 0.538);
  border-radius: 25px;
  color: white;
  font-weight: 500;
  margin-bottom: 2px;
  padding: 5px 15px;
}

.resetBtn:hover {
  background: rgb(131, 16, 72);
  color: white;
  letter-spacing: 0px;
}

.container {
  max-height: 100vh;
  padding: 10px;
  width: 100%;
}

.todo-app {
  backdrop-filter: blur(20px);
  background: #11131dba;
  border-image: linear-gradient(to right, #55080c, #a40f0f) 1 0 0 0;
  border-radius: 30px;
  border-top: 5px solid;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  margin: 100px auto 20px;
  max-height: 480px;
  max-width: 560px;
  overflow-y: auto;
  padding: 40px 30px 70px;
  position: relative;
  transition: all 0.3s ease 0s;
  width: 100%;
}

.todo-app:hover {
  backdrop-filter: blur(50px);
  background: transparent;
  border-image: linear-gradient(to right, #55080c, #ff2b2b) 1 0 0 0;
  box-shadow: 5px 1px 30px #1c19192f;
  transition: all 0.3s ease 0s;
}

.todo-app h2 {
  align-items: center;
  color: hsl(0, 0%, 100%);
  display: flex;
  font-family: Arial, Helvetica, sans-serif;
  margin-bottom: 20px;
  z-index: 1000;
}

.todo-app h2 img {
  margin-left: 10px;
  width: 30px;
}

.me {
  color: rgb(251, 80, 80);
  font-family: Arial, Helvetica, sans-serif;
}

h2 {
  cursor: pointer;
}

.row {
  align-items: center;
  background: #1a1c23b7;
  border-bottom-right-radius: 30px;
  border-top-left-radius: 30px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
  transition: all 0.5s ease 0s;
}

.row:hover {
  background: #22242e;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  transition: all 0.5s ease 0s;
}

input {
  background: transparent;
  border: none;
  flex: 1;
  font-weight: 14px;
  outline: none;
  padding: 10px;
}

::placeholder {
  color: rgb(255, 174, 174);
  font-size: 16px;
}

input,
select,
textarea,
textarea:focus,
input:focus {
  color: rgb(255, 174, 174);
  font-size: 16px;
}

#input-box {
  padding-left: 20px;
}

button {
  animation: animate 8s linear infinite;
  background: radial-gradient(
    circle,
    rgba(180, 0, 32, 1) 0%,
    rgba(150, 3, 32, 0.696) 37%,
    rgba(165, 6, 40, 0.759) 55%,
    rgba(226, 0, 53, 0.801) 75%
  );
  background-size: 500%;
  border: none;
  border-bottom-right-radius: 30px;
  border-top-left-radius: 30px;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  outline: none;
  padding: 16px 50px;
  transition: all 0.3s ease 0s;
}

@keyframes animate {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 500%;
  }
}

ul li {
  cursor: pointer;
  font-size: 17px;
  list-style: none;
  padding: 12px 8px 12px 50px;
  position: relative;
  user-select: none;
}

ul li::before {
  background-image: url(/images/unchecked.png);
  background-position: center;
  background-size: cover;
  border-radius: 50%;
  content: "";
  height: 20px;
  left: 8px;
  position: absolute;
  top: 13px;
  width: 20px;
}

ul li.checked {
  color: rgb(255, 174, 174);
  text-decoration: line-through;
}

ul li.checked::before {
  background-image: url(images/checked.png);
}

ul li span {
  color: #555;
  font-size: 22px;
  height: 40px;
  line-height: 40px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 5px;
  transition: all 0.3s ease 0s;
  width: 40px;
}

ul li span:hover {
  background-color: rgb(255, 174, 174);
  border-bottom-right-radius: 20px;
  border-top-left-radius: 20px;
  transition: all 0.5s ease 0s;
}

#dateInput1 {
  background-color: rgb(191, 78, 78);
  border-radius: 50px;
  color: white;
  font-size: 14px;
  margin-top: 5px;
  padding: 5px;
  text-align: center;
  width: 180px;
}

footer {
  align-items: center;
  backdrop-filter: blur(20px);
  background-color: #00000096;
  bottom: 0;
  display: flex;
  font-weight: bold;
  gap: 20px;
  height: 10%;
  justify-content: center;
  position: fixed;
  width: 100%;
}

.copyright {
  color: rgb(255, 174, 174);
  display: flex;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  justify-content: center;
}

::-moz-placeholder {
  color: white;
}

@media (max-width: 1200px) {
  .todo-app2 {
    margin-top: 0 !important;
  }
}

@media (max-width: 550px) {
  button {
    padding: 16px 20px;
  }
}

@media (max-width: 530px) {
  h3 {
    max-width: 220px;
  }
}

@media (max-width: 400px) {
  .dateInput {
    margin-left: -50px;
  }
}
