/* Reset & base styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Georgia', serif;
  }
  
  body {
    background: linear-gradient(to right, #fdfbfb, #ebedee);
    height: 100vh;
    align-items: center;
    color: #333;
  }
  
  /* Container holds everything centered */
  .form-container,.quote-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    width: 100%;
  }
  
  /* Quote box styling */
   #quote-form,.quote-box {
    background: #fff;
    padding: 2rem 3rem;
    border-radius: 16px;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    text-align: center;
    transition: all 0.3s ease;
  }
  
  .quote {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #444;
  }
  
  .author {
    font-size: 1.1rem;
    color: #777;
    margin-bottom: 2rem;
  }
  
  /* Button styling */
  #add-quote,#new-quote {
    background: #5dbea3;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
  }

  .form{
    display: flex;
    flex-direction: column;
  } 
  
  input, textarea{
    font-size: 20px;
    margin: 1rem;
    border: #777 solid 1px;
    border-radius: 10px;
    padding: 15px;
  }

  label{
    font-size: 20px;
  }
  h2{
    margin-bottom: 2rem;
  }
  
  #new-quote:hover {
    background: #4ea48c;
    transform: translateY(-2px);
  }

  #add-quote:hover {
    background: #4ea48c;
    transform: translateY(-2px);
  }
  
  #new-quote:active {
    transform: translateY(1px);
  }