@media (min-device-width: 812px) and (min-width: 1250px) {
    main {
        display: flex;
        flex-direction: row;
    }
    
    main section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 40%;
        padding-right: 1em;
        box-sizing: border-box;
    }
    
    main iframe {
        width: 60% !important;
        height: auto !important;
        border-top-left-radius: 1em;
        border-bottom-left-radius: 1em;
    }
}

main section h2 {
    margin-bottom: 1em;
}

main table {
    border-collapse: collapse;
    margin: 3em;
    width: calc(100% - 6em);
}

main thead th {
    padding: 0.6em 1.1em;
    color: white;
    text-align: left;
    background-color: #222;
    border-left: solid 0.1em #222;
    border-right: solid 0.1em #222;
    border-bottom: solid 0.3em white;
}

main tbody th::before {
    content: "";
    display: block;
    height: 0.3em;
    width: 100%;
    position: absolute;
    top: 0;
    left: -0.1em;
    border-left: solid 0.1em white;
    border-right: solid 0.1em white;
    background-color: white;
}

main tbody th {
    position: relative;
    padding: 0.6em 0.5em 0.3em 0.5em;
    color: white;
    text-align: right;
    background-color: #046;
    border-left: solid 0.1em #046;
    border-right: solid 0.1em #046;
}

main td {
    border: solid 0.1em black;
    padding: 0.1em 0.5em;
}

main td:first-of-type {
    text-align: right;
    color: #333;
}

main sup {
    vertical-align: baseline;
    position: relative;
    top: -0.4em;
}

main iframe {
    width: 100%;
    height: 90vw;
    border: none;
}