body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    background-color: #f0f8ff;
    margin: 0;
    font-family: Arial, sans-serif;
  }
  
  button {
    padding: 12px 24px;
    font-size: 16px;
    background-color: #ff69b4;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 70px;
    transition: background-color 0.3s;
  }
  
  button:hover {
    background-color: #ff1493;
  }
  
  #visualizer {
    width: 150px;
    height: 150px;
    background-color: #ff69b4;
    border-radius: 50%;
    transition: transform 0.1s linear;
  }
  
  #text {
    margin-bottom: 20px;
  }
  