* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* :root {
  --dark-color: #22252d;
  --secound-color: #292d36;
  --light-color: #fff;
} */
.dark-theme {
  --dark-color: #22252d;
  --secound-color: #292d36;
  --dark-secound: #000;
  --light-color: #fff;
}
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90vh;
}
.btn-clear {
  color: blue;
}
.parent {
  display: inline-block;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border: 4px solid black;
  height: 80vh;
  width: 300px;
  background: var(--secound-color);
  border-radius: 30px;
}
.screen {
  width: 100%;
  height: 180px;
  font-size: 35px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  border: none;
  padding: 20px;
  text-align: end;
  border-bottom: none;
  color: var(--light-color);
  background-color: var(--dark-secound);
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;
}
.buttons {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: var(--secound-color);
  height: 395px;
  border-radius: 30px;
}
.buttons01 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.btn {
  font-size: 18px;
  font-weight: 400;
  height: 35px;
  width: 35px;
  border: none;
  margin: 10px;
  text-align: center;
  background: var(--dark-color);
  font-family: "Rubik", sans-serif;
  color: var(--light-color);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.screen:focus {
  border: none;
  outline: none;
}

.icon-with {
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-radius: 22px;
  margin: 14px;

  background: var(--secound-color);
}
.close {
  height: 20px;
  width: 20px;
  /* color: red; */
}
#icon01 {
  height: 30px;
  width: 30px;
  color: var(--light-color);
  cursor: pointer;
}
.iconplus {
  height: 20px;
  width: 20px;
  color: #fff;
  color: #a55b5e;
}

@media screen and (max-width: 375px) {
  .container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .parent {
    border-radius: 0px;
    border: none;
    height: 100%;
    width: 375px;
  }
}
