@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300;400;600&family=Roboto+Slab:wght@300;400&family=Roboto:ital,wght@0,100;0,300;0,400;1,300;1,400&display=swap');

html, body {
    padding:0px;
    margin: 0px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.header {
    background-color: #a25636;
    background-image: url(img/title-bg.jpg);
    background-size: cover;
    flex-shrink: 0;
}

.header-menu-wide {
    max-width: 1100px;
    margin: auto;
    border: 10px;
    padding-top: 10px;
    padding-right: 10px;
    padding-left: 10px;
    font-family: 'Roboto Mono', monospace;
    font-size: 80%;
    font-weight: 600;
    color: white;   
    text-align: right;
}

.header-menu-wide a {
    color: white;
    text-decoration: none;
}

.header-menu-wide a:hover {
    text-decoration: underline;
}

.header-menu-wide .current-page{
    color: #ffb93a;
    text-decoration: underline;
}

.header-menu-wide .current-page:hover{
    text-decoration: none;
}

.header-menu-mobile {
    display: none;
    border: 5px;
    padding-top: 5px;
    padding-right: 100px;
    padding-left: 50px;
    font-family: 'Roboto Mono', monospace;
    font-size: 150%;
    font-weight: 600;
    color: white;   
    text-align: right;
}

.overlay {
    height: 100%;
    width: 100%;
    display: none;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0, 0.9);
    font-family: 'Roboto Mono', monospace;
}

.overlay-content {
    position: relative;
    top: 25%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 36px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.overlay a:hover, .overlay a:focus {
    color: #f1f1f1;
}

.overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
}

@media only screen and (max-width: 650px) {
    .header-menu-wide {
        display: none;
    }
    .header-menu-mobile {
        display: block;
    }
    .header {
        height: 50px;
    }
}

.small-heading {
    font-size: 40%;
}

.header-title {
    text-align: center;
}

.header-title h1 {
    font-family: 'Roboto Slab', serif;
    color: white;
    font-size: 200%;
    margin-top: 15px;
    margin-bottom: 15px;
}

.body-content {
    max-width: 1100px;
    width: 90%;
    margin: auto;
    padding-right: 20px;
    padding-left: 20px;
    flex-grow: 1;
}

.body-content h2 {
    font-family: 'Roboto', sans-serif;
    color: #2c2c2c;
    font-weight: 300;
    font-size: 175%;
}

.body-content h3 {
    font-family: 'Roboto', sans-serif;
    color: #2c2c2c;
    font-weight: 300;  
    margin-top: 40px;
}

.body-text-block {
    text-align: center;
    margin: auto;
    font-family: 'Roboto', sans-serif;
    color: #2c2c2c;
    font-weight: 300;
    line-height: 150%;
    font-size: 100%;
    padding-bottom: 20px;
    padding-top: 10px;
}

.body-text-block p {
    margin-bottom: 10px;
    margin-top: 10px;
}

.body-text-block a {
    color: #53afff;
    transition: 0.3s;
    text-decoration: none;
}

.body-text-block pre {
    margin: 0;
    font-family: 'Roboto Mono', monospace;
    font-size: 80%;
}

.body-text-block a:hover {
    color: #005daf;
    transition: 0.1s;
}

.body-tiles {
    padding-bottom: 20px;
    padding-top: 10px;
    text-align: center;
}

.body-tiles h2 {
    font-family: 'Roboto', sans-serif;
    color: #f1f1f1;
    font-weight: 400;
}

.indent-block {
    padding-left: 20px;
}

.container {
    position: relative;
    display: inline-block;
    max-width: 250px;
    margin: 5px;
    border-radius: 130px;
   /* border: 2px solid #73AD21;*/
    overflow: hidden;
}
        
.container img {
    transition: 0.5s;
    /*height: 100%;*/
    width: 100%;
    /*object-fit: contain;*/
    display: block;
}
    
.container .content {
    position: absolute;
    bottom: 0px; 
    background: rgb(0, 0, 0); 
    background: rgba(0, 0, 0, 0.3);
    color: #f1f1f1;
    width: 100%;
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
    text-align: center;
    transition: 0.5s;
}

.container .content h2 {
    margin: 20px;
}

.container:hover img {
    opacity: 0.8;
}

.container:hover .content {
    background: rgba(0, 0, 0, 0.75);
}

.footer {
    background-color: #a25636;
    text-align: center;
    padding-bottom: 20px;
    padding-top: 10px;
    flex-shrink: 0;
}

.footer p {
    font-family: 'Roboto Slab', serif;
    display: inline;
    color: white;
}

.footer a {
    position: absolute;
    right: 10px;
}

.table-wrap {
    overflow-x:auto;
}

table {
    border-collapse: collapse;
    white-space: nowrap;
}
    
th, td {
    border-bottom: 1px solid #ddd;
    border: 1px solid #ddd;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 6px;
    padding-right: 6px;
}

.icon {
    vertical-align: middle;
    margin-left: 5px;
    margin-right: 5px;
    height: 40px;
}

.vidcontainer {
    display: flex;
    justify-content: center;
}

iframe {
    aspect-ratio: 16 / 9;
    width: 100% !important;
   /* height: 100% !important;*/
}