@font-face {
    font-family: 'Urbanist';
    src: url('../fonts/Urbanist-Bold.woff2') format('woff2'),
        url('../fonts/Urbanist-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

body {
    background: #eef5f9;
    margin: 0;
    padding: 0;
    font-family: 'Urbanist';
    font-weight: bold;
    text-align: center;
    color: #fff;
    line-height: 1.2;
}

header {
    height: 120px;
    text-align: left;
}

header img {
    max-width: 70vw;
    height: 80px;
    margin: 20px;
}

section#content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    aspect-ratio: 16/9;
    margin: 0 auto;
    width: 100%;
    max-height: calc(100% - 240px);
    padding: 0;
    overflow: hidden;
    z-index: 100;
}

section#content .frame {
    height: 100%;
}

footer {
    width: 100%;
    position: fixed;
    bottom: 0;
    padding: 20px;
    background: #f7a600;
    min-height: 120px;
    box-sizing: border-box;
}

h1 {
    font-size: 40px;
    margin: 0 0 20px;
}

h2 {
    font-size: 30px;
    margin: 20px 0;
}

@media (orientation: landscape) {
    h2 {
        display: none;
    }
}