html {
    scroll-behavior: smooth;
}

body {
    margin: 0 auto;
    box-sizing: border-box;
    font-family: 'Noto Sans', sans-serif;
    min-width: 100vw;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    padding: 0;
    line-height: 1.5;
}

.font-eng {
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.outer-grid {
    display: grid;
    height: 100vh;
    gap: .5rem;
    padding: .5rem;
}

.tile {
    padding: .5rem;
    background-color: #fff;
    border-radius: .25rem;
    position: relative;
}

.tile .tile-content-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
}

/* Video Screen */

.video {
    width: 100vw;
    height: 100vh;
}

/* Temperature */

#tempCard {
    display: none;
}