/* Copyright © 2021 Mark E Sowden */

@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400&family=Itim&display=swap');

table {
    width: 80%;
}

td, th {
    border: 0;
    text-align: right;
    padding: 0;
}

.dropbtn {
    padding: 5px;

    font-size: 20px;
    font-weight: bold;

    cursor: pointer;

    border: 1px solid red;
    border-radius: 5px;

    color: red;
    overflow: visible;
    text-align: center;
    background: #e7e7e7;
}

.dropbtn:hover, .dropbtn:focus {
    border: 1px solid darkred;
    border-radius: 5px;
}

.dropdown {
    position: relative;
    display: inline-block;
    font-size: 20px;
    text-align: left;
}

.dropdown-content {
    display: none;
    text-decoration: none;
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.show {
    display: block;
    animation-duration: 1s;
    animation-name: fadein;
}

h1 {
    font-size: 48px;
    margin-bottom: 0px;
    padding-bottom: 0px;
    margin-top: 0;
}

body {
    /*background: #171c2b;
    color: #d2cdd0;*/
    color: #000000;
    background: #e0e0e0;
    font-family: 'Hind Siliguri', sans-serif;
    font-size: 24px;
    margin: 0;
    height:100%;
}

a {
    color: red;
    text-decoration: none;
}

a:hover {
    color: darkred;
}

.subtitle {
    margin: 0 0 8px;
    font-size: 22px;
}

.content {
    width: 640px;
    text-align: left;
    /*align-content: left;*/

    margin-left: auto;
    margin-right: auto;

    min-height: 315px;
}

.center {
    width: 100%;
    align-content: center;
    text-align: center;

    margin-left: auto;
    margin-right: auto;
}

.heading {
    margin-top: 32px;
    /*float: left;*/
}

.footer {
    margin-top: auto;
    bottom: 5%;
    padding-bottom: 20px;
}

hr {
    border: none;
    border-bottom: 3px double red;
    color: #414141;
    overflow: visible;
    text-align: center;
    height: 5px;
    background: none;
}
