body {
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-color: #13294b;
    padding: 20px;
  }

  h2 {
    font-size: 20px;
    color: grey;
    font-family: monospace;
    /* line-height: 0%; */
  }

  h1 { 
    font-size: 40px;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 0%;
  }

  .compass {
    position: relative;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    /* box-shadow: 0 0 15px rgba(146, 146, 146, 0.2); */
    margin: auto;
  }

  .compass > .arrow {
    position: absolute;
    width: 0;
    height: 0;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-style: solid;
    border-width: 30px 20px 0 20px;
    border-color: #FF5F0F transparent transparent transparent;
    z-index: 1;
  }

  .compass > .compass-circle,
  .compass > .my-point {
    position: absolute;
    width: 90%;
    height: 90%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out;
    background: url("./arrow.svg")
      center no-repeat;
    background-size: contain;
  }

  .compass > .my-point {
    opacity: 0;
    width: 20%;
    height: 20%;
    background: #FF5F0F;
    border-radius: 50%;
    transition: opacity 0.5s ease-out;
  }

  .start-btn {
    margin-bottom: auto;
    border: none;
    background-color: rgb(255, 255, 255);
    border-radius: 75px;
    width: 75px;
    height: 75px;
    font-family: Arial, Helvetica, sans-serif;
    color: grey;
  }