:root {
  --accent-blue: #93ABD8;
  --accent-bej: #FAF4CD;;
}
.swiper{
  overflow: hidden;
}

.swiper-wrapper{
  height: 50vh;
}

body{
  height: 100vh;
  background: var(--accent-blue);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.main{
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.title{
  font-size: 55px;
  color: var(--accent-bej);
  
  font-weight: 800;
  margin-bottom: 45px;
}

.form{
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}

.button-create{
  padding: 15px 50px;
  border-radius: 10px;
  font-size: 20px;
  background: transparent;
  border: 3px solid var(--accent-bej);
  color: #FAF4CD;
  font-weight: 800;
  transition: all .4s;
}

.button-create:hover{
  background: var(--accent-bej);
  color: var(--accent-blue);
  
}

.input{
  border: 3px solid var(--accent-bej);
  border-radius: 10px;
  background: transparent;
  font-size: 25px;
  padding: 10px 20px;
  color: var(--accent-bej);
  transition: all .4s;
}

.input:focus{
  border: 3px solid var(--accent-bej);
  background: var(--accent-bej);
  color: var(--accent-blue);
}



.todo{
  width: 100%;
  height: fit-content !important;
  min-width: 40vw;
  padding: 20px 30px;
  background: var(--accent-bej);
  color: var(--accent-blue);
  font-weight:600;
  border-radius: 10px;
  transition: all .4s;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.todo:hover {
  transform: translateY(-3px);
}

.todo_buttons{
  display: flex;
  gap: 10px;
}

.todo_delete, .todo_complited{
  display: block;
  font-size: 25px;
  width: 35px;
  height: 35px;
  color: var(--accent-blue);
  font-weight: 800;
  padding: 7px;
  border: 1px solid var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}


.complited {
  opacity: .7;
}