body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f4;
  }
  
  .compass-container {
    text-align: center;
  }
  
  .compass {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
  }
  
  .compass-image, .qibla-needle {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-origin: center;
  }
  
  .qibla-info {
    margin-top: 20px;
  }
  
  .qibla-info h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
  }
  
  .qibla-info p {
    font-size: 1.2em;
    margin-bottom: 5px;
  }
  