html,
body {
    margin: 0px;
    padding: 0px;
    background: #000000;
}

* {
    cursor: none;
}

.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    background: #000000;
}

.wrapper_clock {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-shadow: 0 0 12px #000000ec;
}

.text_clock {
    color: white;
    font-size: 90px;
    font-family: 'Product Sans', sans-serif;
}

.wrapper_time {
    display: flex;
    align-items: flex-end;
}

.text_time-hhmm {
    font-size: 340px;
}

.text_time-ss {
    display: block;
    width: 177px;
    margin-bottom: 52px;
    font-size: 128px;
}

.wrapper_weather {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-shadow: 0 0 12px #000000fe;
    z-index: 0;
    background-color: #b4b4b458;
    border-radius: 32768px;
}

.wrapper_weather>svg {
    filter: drop-shadow(0px 0px 8px #000000fe);
}

.img_weather {
    width: 160px;
    height: auto;
    margin-left: 20px;
    margin-right: -20px;
    filter: drop-shadow(0px 0px 3px #00000060);
}

.text_weather {
    font-family: 'Product Sans', sans-serif;
    font-size: 74px;
}

.text_weather-temp,
.text_weather-humidity{
    margin-left: 16px;
}

.text_weather-temp {
    margin-left: 34px;
}

.svg_wind-direction {
    margin-left: 26px;
    width: 90px;
    height: auto;
    transition-duration: 0.8s;
}

.svg_rainy-percent {
    margin-left: 26px;
    width: 68px;
    height: auto;
}

.text_weather-rainy-percent {
    padding-right: 54px;
}

.wrapper_error {
    display: flex;
    align-items: center;
    background: #ffffff26;
    border-radius: 100px;
    padding: 10px;
    padding-left: 26px;
    padding-right: 26px;
}

.wrapper_error>svg {
    width: 70px;
    margin-right: 8px;
}

.wrapper_error>a {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 40px;
    color: #ff2424;
}

.msg_offline {
    display: flex;
    position: absolute;
    align-items: center;
    bottom: 24px;
    left: 24px;
    padding: 20px;
    border-radius: 8px;
    background: #ffffffcc;
    font-family: 'Product Sans', sans-serif;
}