/* @font-face {
    font-family: 'Noto Sans KR';
    src: url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR');
} */

body {
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

#container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#clockContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vw;
    width: 100vw;
    max-height: 100vh;
    max-width: 100vh; /* To ensure it remains circular */
    background: url(Assets/clock.png);
    background-size: cover;
    border-radius: 50%; /* To make it circular */
}

#clockContainer{
    display: flex;
    height: 100vw;
    width: 100vw;
    background: url(Assets/clock.png);
    background-size: 100%;
    position: relative;
    margin: auto;
    margin-top: 3%;
}

#weatherContainer {
    display: flex;
    align-items: center;
    margin-top: 20px; /* Increased top margin */
    color: white;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: bold;
}

#weatherSection, #tempSection {
    display: flex;
    align-items: center;
}

#dateContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 1.5em;
    font-weight: bold;
    margin-top: 20px;
}

#minute, #hour, #second{
    position: absolute;
    background-color: white;
    border-radius: 50%;
    transform-origin: bottom;
}

#second{
    width: 0.25%;
    height: 27%;
    top: 23.2%;
    left: 49.6%;
}

#minute{
    width: 0.5%;
    height: 19%;
    top: 31.15%;
    left: 49.6%;
}

#hour{
    width: 0.5%;
    height: 12%;
    top: 38%;
    left: 49.6%;
}

#weatherIcon {
    width: 8.0rem;
    height: 8.0rem;
}

#tempText {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
}
#year, #month, #date, #day{
    display: inline-block;
    margin: 0 0.5vw;
    font-family: 'NotoSansKR', sans-serif;
    font-size: 2.0rem;
    font-weight: bold;
}