body {
  margin: 0;
  display: flex;
  flex-direction: column; /* Ensures children stack vertically */
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-family: "Courier New", Courier, monospace;
  background: linear-gradient(to left bottom, lightgreen, lightblue);
}

.container {
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
  padding: 30px;
  border-radius: 15px;
  width: 90%;
  margin: 10px 0 40px ; /* 10px top margin, 40px bottom margin */
  text-align: center;
}
  
  .heading {
    font-size: 25px;
    font-weight: 700;
  }
  

/* CSS styles for the todo items and remove button */
.todo-item {
  display: flex;
  align-items: flex-start; /* Align items to the top */
}

.todo-item-text {
  flex-grow: 1;
  text-align: left; /* Align the text to the left */
  word-break: break-all; /* Break words to multiple lines */
}

.remove-button {
  margin-left: 10px;
}

  .fikir {
    font-size: 30px;
    font-weight: 600;
    color : rgb(136, 116, 116);
  }

  .quote {
    font-size: 30px;
    font-weight: 500;
  }

  
  .author {
    font-size: 25px;
    margin: 10px;
    font-style: italic;
  }
  
  .btnLarge {
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    padding: 10px;
    margin-top: 15px;
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    width: 300px;
  }
  
  .btnSmall {
    font-size: 12px;
    border-radius: 5px;
    cursor: pointer;
    padding: 5px;
    margin-top: 5px;
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    width: 150px;
  }

  .btn:hover{
      background-color: rgba(255,255,255,.6);
      box-shadow: 0 4px 4px rgba(0,0,0,.3);
      transition: all 300ms ease-in-out;
      color: green;
  }
