body {
    margin: 0;
    padding: 0;
    font-family: 'Times New Roman', Times, serif;
    overflow-y: auto;
    overflow-x: hidden;
}

header {
    background: #243571;
    color: #f1f1f6;
    padding: 0;
    margin-top: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

#header-title {
    background-color: #243571;
    color: #f1f1f6;
    font-family: monospace;
    font-size: 32px;
    padding: 4px 0;
    padding-left: 24px;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
}

#header-title span {
    display: inline-block;
    margin-top: -6px;
    margin-bottom: -6px;
    padding: 4px 8px;
    font-weight: bold;
    font-size: 38px;
    border-right: 4px solid white;
    border-left: 4px solid white;
}

#header-title span:not(:first-child) {
    border-left: none;
}

#header-subtitle {
    background-color: #3286ce;
    color: #f1f1f6;
    font-family: monospace;
    font-size: 18px;
    font-style: italic;
    text-align: center;
    padding: 4px 4px;
    width: 100%;
    box-sizing: border-box;
}

header a {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    color: #f1f1f6;
    text-decoration: none;
    font-size: 14px;
    font-family: monospace;
}

header a:hover {
    text-decoration: underline;
}

.description {
    background: white;
    padding: 20px;
    color: #333;
    border-bottom: 3px solid #243571;
    box-shadow: inset 0 -2px 4px rgba(0,0,0,0.1);
}

.description p {
    margin: 0 0 10px 0;
    line-height: 1.5;
}

.description p:last-child {
    margin-bottom: 0;
}

.float-right {
    float: right;
    margin-left: 20px;
    margin-bottom: 10px;
}

iframe {
    width: calc(100vw - 40px);
    min-height: 800px;
    height: calc(100vh - 200px);
    border: none;
    display: block;
    margin: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    background: white;
}