body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #111;
    color: #fff;
}

#kiblat-container {
    text-align: center;
}

#kiblat {
    width: 200px;
    height: 200px;
    border: 5px solid #fff;
    border-radius: 50%;
    position: relative;
    margin: 0 auto;
    background: url('kompas-bg.png') no-repeat center center;
    background-size: cover;
}

#kiblat::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    background-color: red;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transform-origin: bottom;
}