:root {
    --error: #DC3232;
    --notice: #6a97c4;
    --success: #39B54A;

    --primary-color: #004479;
    --accent-color: #4F6BA0;
    --nav-color: #000000;
    --nav-text-color: #FFF;

    --drop-down-color: #FFF;
    --border-color: #D3D3D3;
    --drop-down-link-hover: #333;

    --main-background: #F3F3F3;
    --dark-background: #38383D;

    --shadow: 0 1px 6px -1px rgba(0, 0, 0, 0.1);
    --md-shadow: 0 1px 6px -1px rgba(0, 0, 0, 0.1);
    --text-shadow: 0 1px 6px -1px rgba(0, 0, 0, 0.1);
    --image-shadow: 0 1px 6px -1px rgba(0, 0, 0, 0.1);

    --bulletin-border-color: #888;
    --bulletin-shadow: 0 1px 6px -1px rgba(0, 0, 0, 0.1);

    --menu-font-weight: 400;
}

* {
    margin: 0;
    padding: 0;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 14px;
}

@font-face {
    font-family: "Open Sans";
    src: url("fonts/OpenSans-Regular.ttf");
}

@font-face {
    font-family: "Material Icons";
    src: url("fonts/MaterialIcons-Regular.ttf");
}

body {
    padding: 10px;
    max-width: 75em;
    margin: auto;
}

header {
    text-align: center;
}

header img {
    height: 100px;
}

header div {
    font-weight: 600;
    font-size: 1.5rem;
}

main p {
    margin-bottom: 10px;
}

main a {
    color: blue;
}

h1 {
    font-size: 1.5rem;
    font-weight: normal;
    padding: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
    border-top: 1px solid #4E4848;
    border-bottom: 1px solid #4E4848;
}

h2 {
    margin-top: 2rem;
    margin-bottom: 10px;
    font-size: 2rem;
    font-weight: normal;
    text-align:center;

}

ul li {
    list-style-position: inside;
}

div.menu {

}

div.menu-item {
    background-color: lightgray;
    font-weight: 600;
    padding: 20px;
    margin: 10px;
}

div.menu-item p {
    font-size: 1.25rem;
}

ul.portal-menu {
    margin-top: 10px;
    margin-bottom: 2px;
    display: flex;
    flex-wrap: wrap; 
    justify-content: center;
}

ul.portal-menu li {
    list-style-type: none;
    display: inline;
    width:35em;
}

ul.portal-menu li a {
    display: block;
    position: relative;
    text-decoration: none;
    vertical-align: middle;
    min-width: 275px;
    background-color: #F3F3F3;
    padding: 5px 10px;
    box-shadow: var(--bulletin-shadow);
    margin: 1em;
    transition: background-color 0.3s linear;
    color: #3366FF;
}

ul.portal-menu li a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #546334;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

ul.portal-menu li a:hover {
    background-color: #E3E3E3;
}

ul.portal-menu li a:hover::before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

ul.portal-menu li a img {
    height: 65px;
    vertical-align: middle;
    margin-right: 10px;
}

ul.portal-menu li a span {
    font-size: 1.5rem;
    color: #000;
    font-weight: var(--menu-font-weight);
    position: absolute;
    left: 90px;
    top: 25px;
}

.icon {
    font-family: "Material Icons", sans-serif;
    font-weight: normal;
    font-style: normal;
    display: inline-block;
    line-height: 1;
    font-size: 65px;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;

    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga';

    margin-right: 3px;
}

table {
    margin-bottom: 10px;
}

table tr:nth-child(2n+1) {
    background-color: lightgray;
}

table tr td, table tr th {
    padding: 3px;
}

table tr td:nth-child(2) {
    font-style: italic;
}

p.browser-req {
    font-size: .9rem;
    position: absolute;
    right: 10px;
    bottom: -5px;
    font-weight: bold;
    color: darkred;
}

footer {
    text-align: center;
    color: darkred;
    font-weight: bold;
}