
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
}

body {
  background: #0c0f17;
  color: #e5e5e5;
  padding: 40px;
  
}
/* ===== TODOLIST DESIGN ===== */

.container {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 30px;
}

.card-TodoList {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(42,252,133,0.2);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 0 20px rgba(42,252,133,0.05);
}

.card h2 {
  margin-bottom: 20px;
  color: #2afc85;
}

h1 {
  font-size: 92px;
  padding: 80px 50px;
  text-align: center;
  text-transform: uppercase;
  text-rendering: optimizeLegibility;
  
}

/* TODO */
.todo-input {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.todo-input input {
  flex: 1;
  padding: 10px;
  border-radius: 6px;
  border: none;
}

.todo-input button {
  padding: 10px 15px;
  border: none;
  background: #2afc85;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

ul {
  list-style: none;
}

li {
  padding: 10px;
  background: rgba(255,255,255,0.05);
  margin-bottom: 10px;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.completed {
  text-decoration: line-through;
  opacity: 0.6;
}

/* POMODORO */
.timer {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 20px;
}

.timer-buttons {
  display: flex;
  gap: 10px;
  
}

.timer-buttons button {
  flex: 1;
  padding: 10px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

.start { background: #2afc85; }
.pause { background: #ffb020; }
.reset { background: #ff4d4d; }

/* NOTES */
textarea {
  width: 100%;
  height: 250px;
  padding: 10px;
  border-radius: 8px;
  border: none;
  resize: none;
}