body {
    margin: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: white;
}

#lang-select {
    position: fixed;
    display: inline-block;
    top: 20px;
    right: 20px;
    width: auto;
    min-width: 70px;
    height: auto;
    min-height: 50px;
    font-family: "Noto Sans", sans-serif;
    font-size: clamp(14px, 1.5vw, 20px);
    font-weight: 800;
    padding: 6px 10px;
    cursor: pointer;
    border: none;
    background: none;
    text-align: center;
}
  
#lang-select:focus {
    outline: none;
}

.circle {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 95%;
    height: 90%;
    border: 5px solid black;
    border-radius: 50%;
    box-sizing: border-box;
    isolation: isolate;
    font-style: normal;
    margin: 30px auto;
}

.center-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2px;
    height: 2px;
}

.clock-axis {
    position: absolute;
    width: 0;
    height: 0;
    display: flex;
    align-items: center;
}

#hour-axis { z-index: 1; }
#minute-axis { z-index: 2; }

.hand {
    position: absolute;
    font-weight: bold;
    white-space: nowrap;
    transform-origin: left center; 
    display: inline-block;
}

#kor-hour-hand {
    font-size: clamp(40px, 4.5vw, 65px);
    color: black;
    padding-left: 0.4em;
    font-family: "Noto Sans", sans-serif;
    font-weight: 900;
}

#kor-minute-hand {
    font-size: clamp(30px, 3vw, 40px);
    padding-left: 0.4em;
    font-family: "Noto Sans", sans-serif;
    font-weight: 800;
    color: black;
    mix-blend-mode: difference; 
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0 0 0 20px;
    font-size: clamp(12px, 2vw, 20px);
}
