body {
    margin: 0;            /* Reset default margin */
}
iframe {
    display: block;       /* iframes are inline by default */
    background: #000;
    border: none;         /* Reset default border */
    height: 100vh;        /* Viewport-relative units */
    width: 100vw;
}


* {
    box-sizing: border-box;
    color: #615f5f;
}

.container {
    width: 350px;
    height: auto;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.aqi-container {
    padding: 10px;
    border-radius: 5px;
}

.aqi-data-wrapper {
    clear: both;
}

.aqi-short-info {
    width: 50%;
    text-align: center;
    float: left;
    padding-right: 10px;
}

.aqi_image img {
    display: block;
    width: 60px;
    height: auto;
    margin: 0 auto;
}

.range {
    width: 122px;
    position: relative;
    height: 10px;
    margin: 10px auto;
    -webkit-margin-collapse: collapse;
    border-width: 1px;
    border-style: solid;
}

.range-block {
    width: 20px;
    height: 100%;
    border-width: 1px;
    border-style: solid;
    float: left;
}

.pointer {
    position: absolute;
    width: 10px;
    height: auto;
    top: -225%;
}

.good {
    background-color: #90ee92;
}

.moderate {
    background-color: rgba(255,242,71,0.8);
}

.unhealthy-for-sg {
    background-color: #f5bc99;
}

.unhealthy {
    background-color: rgb(239,146,146);
}

.very-unhealthy {
    background-color: #b290ee;
}

.hazardous {
    background-color: rgb(227,162,162);
}

.desc {
    font-size: 12px;
}

.address {
    display: inline-block;
    width: 100%;
}

.address p {
    text-align: center;
    margin-bottom: 5px;
}

.address img {
    width: 16px;
    height: 12px;
}

.address b {
    display: inline-block;
    font-size: 14px;
    margin-top: 10px;
}

.aqi-detailed-info {
    width: 50%;
    padding: 12px;
    border-radius: 5px;
    height: fit-content;
    float: left;
}

h2, h5, p {
    margin-top: 0;
}

h5 {
    margin-bottom: 0;
    font-weight: 600;
}

h2.aqi-status-title {
    margin-bottom: 0;
    font-size: 16px;
}

h2.pm25 {
    margin-bottom: 3px;
    line-height: 1;
}

h2.aqi-value {
    margin-bottom: 10px;
    line-height: 1;
}

h2 span {
    font-size: 16px;
}

p {
    font-size: 12px;
    margin-bottom: 0;
}

.weather-container {
    margin-top: 10px;
    padding: 5px 15px;
    height: 60px;
    background-color: lightgray;
    border-radius: 5px;
}

.weather-container img {
    width: 14px;
    height: 14px;
    vertical-align: top;
}

.weather-block {
    width: 50%;
    float: left;
}

.weather-block .temperature img {
    width: 10px;
    height: 14px;
}

.weather-block .humidity img {
    width: 10px;
    height: 14px;
}

.weather-block .wind-speed img {
    width: 12px;
    height: 12px;
}

.weather-block p {
    margin: 5px;
    vertical-align: middle;
}

.weather-block p b {
    display: inline-block;
    margin-left: 3px;
}

.weather-block.air p b {
    width: 55%;
}

.weather-block.wind p b {
    width: 40%;
}

.weather-block p span {
    text-align: right;
}

.logo {
    margin: 10px auto;
    text-align: center;
}

.logo img {
    width: 100px;
    height: auto;
}