* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background-color: #0a0a23;
    color: #ffffff;
  }
  .container{
    display: flex;
    width: 100%;
    min-height: 100vh;
    position: relative;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  
  }
  
  .freecodecamp-logo{
    height: 30px;
    margin-bottom: 20px; 
  }
  
  .title{
    text-align: center;
    padding: 10px 0;
    font-size: 38px;
    margin-bottom: 20px;
  }
  
  .palindrome-div{
      width: min(100vw, 450px);
      min-height: 100px;
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      padding: 20px;
      margin: 10px 0;
      background-color: white;
      box-shadow: 0 6px 6px #002ead;
  }
  
  label{
    color: #0a0a23;
    margin-bottom: 20px;
  }
  
  .palindrome-input{
    height: 30px;
    width: 250px;
    text-align: center;
    font-size: 1.2rem;
    border: none;
    margin: 10px;
    border-bottom: 2px solid #5a01a7;
  }
  
  .palindrome-btn{
    width: 90px;
    background-color: #5a01a7;
    padding:10px;
    border-radius: 15px;
    border: none;
    color: #ffffff;
    cursor: pointer;
  }
  
  .hidden{
    display: none;
  }
  
  .results-div{
    overflow-y: auto;
    word-wrap: break-word;
    min-height: 50px;
    color: black;
  }
  
  .palindrome-definition-div {
      width: min(100vw, 450px);
      font-size: 1.3rem;
      min-height: 140px;
      background-color: #00471b;
      margin-top: 20px;
      padding: 20px;
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  
  .palindrome-definition {
      vertical-align: middle;
      text-align: center;
  }
  
  
