html, body {
    font-family: 'Helvetica', sans-serif;
    min-height: 100vh;
    max-width: 100%;
    margin: 0;
    height: 0;
}
iframe {
    height:100%;
    width:100%
}
a {
    color: #0000ff;
    text-decoration: none
}

.wb-section {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: flex-start;
    padding: 40px 0;
}

.wb-section + .wb-section {
    border-top: 1px solid #d3d3d3;
}

.wb-section__title h2 {
    margin: 0;
}

.wb-section__title p {
    color: grey;
    margin: 8px 0 0 0;
}

.wb-link {
    --link-color: #10192d;
    color: var(--link-color);
    text-align: center;
    /*background: #e8e8e8;*/
    /*background: #ffc74f;*/
    border: 1px solid var(--link-color);
    /*border-radius: 8px;*/
    border-radius: 4px;
    padding: 8px 8px;
    transition: background-color 0.2s ease-out, box-shadow 0.2s ease-out;
    user-select: none;
    display: block;
}

.wb-link:hover:not(.disabled) {
    box-shadow: -4px 4px 0 0 var(--link-color);
    color: var(--link-color);
}
.wb-link.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none
}