body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    flex-direction: column; /* Change to column to stack elements vertically */
}

#compass-container {
    width: 90%;
    max-width: 1000px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

#compass {
    width: 100%;
    height: 100%;
    transform-origin: center;
}

#distance {
    margin-top: 20px; /* Add some space above the distance display */
    font-size: 4.5em; /* Increase font size by 50% */
    font-weight: bold;
    text-align: center; /* Center the text */
}

#angle {
    margin-top: 20px; /* Add some space above the angle display */
    font-size: 4.5em; /* Increase font size by 50% */
    font-weight: bold;
    text-align: center; /* Center the text */
}

#phone_angle {
    margin-top: 20px; /* Add some space above the angle display */
    font-size: 4.5em; /* Increase font size by 50% */
    font-weight: bold;
    text-align: center; /* Center the text */
}
