body {
    font-family: Arial, sans-serif;
    text-align: center;
  }
  #name-display {
    font-size: 24px;
    margin-bottom: 20px;
    overflow: hidden;
    white-space: nowrap;
  }
  button {
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
  }

  .name-display {
    border: 2px dotted red;
    border-radius: 10px;
    width: 500px;
    margin: auto;
    padding: 20px;
  }

  /* Modal Animation */
  .modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Black background with transparency */
    overflow: auto;
    animation: modalFadeIn 0.5s ease-in;
    /* Animation for modal fade-in */
  }

  @keyframes modalFadeIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  .modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    position: relative;
    animation: modalContentFadeIn 0.5s ease-in;
    /* Animation for modal content fade-in */
    border-radius: 10px;
    text-align: center;
  }

  @keyframes modalContentFadeIn {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
  }

  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }

  .submit-btn {
    padding: 5px;
    background-color: lightcoral;
    border: 2px solid lightcoral;
    border-radius: 5px;
    color: white;
  }

  .draw{
    background-color: lightgreen;
    border: 2px solid lightgreen;
    border-radius: 5px;
  }

  .backdiv {
    display: flex;
    justify-content: end;
    margin: 50px;
  }
  
  .backBtn {
    background-color: black;
    color: white;
    padding: 5px;
    border: 2px solid black;
    border-radius: 5px;
    font-size: medium;
    cursor: pointer;
  }