/* Styles the navigation section at top of page */

#metaline {
    font-size: 75%;
    color: #DFDFDF;
    line-height: 75%;
    margin: 0;
}
#metaline span:first-child {
    color: #000;
}
#metaline > a {
    padding-left: 2em;
    text-decoration: underline;
}

h2 {
    color: #005239;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: 2px solid #005239;
    padding: 12px 0px;
    outline: none;
    background-color: white;
    color: black;           /* <-- Button text is black by default */
    cursor: pointer;
    transition-duration: 0.4s;
    border-radius: 4px;
    font-size: 16px;
    margin: 4px 2px;
    width: 200px;
}

.btn:hover {
    background-color: #005239;
    color: white;           /* <-- Button text turns white on hover */
}

.btn:focus {
    background-color: #005239;
    color: white;
}

/* ----------------------- */
/* Mobile responsive rules */
/* ----------------------- */

/* Smartphone rules*/
@media only screen and (max-width : 600px) {
    .information h2 {
        padding-top: 0em;
        padding-left: 0.1em;
        padding-right: 0.1em;
    }
    .information p {
        padding-bottom: 1em;
        padding-left: 1em;
        padding-right: 1em;
    }
    .alignleft {
        visibility: hidden;
    }
    .alignright {
        visibility: hidden;
    }
}

iframe {
    width: 100%;
    height: 775px;
    border: 2px solid #ccc;
}