:root {
    --bg-color: #450037;
    --text-color: #dddddd;
    --text-color-faded: #9a9a9a;
    --link-header-font-size: 20px;
    --header-font-size: 30px;
    --body-font-size: 16px;
    --opacity: 1;
}
body, html {
    height: 100%; 
    width: 100%; 
    margin: 0;
    background-image: linear-gradient(to bottom, #f6d5d5, #ffe5d5, #fffbe4, #edf7ef, #f0fefd, #e7e8fe, #f9e3ff, #f6d5d5);

}
* {box-sizing: border-box;}

#top {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}
#top h1 {
    font-weight: lighter;
    font-size: var(--header-font-size);
}
#top h3 {
    font-weight: lighter;
}
#top h1, #top h3 {margin: 5px;}
#content {width: 100%;}
#content a {
    text-decoration: none;
    transition: all 0.4s ease;
    color: var(--text-color-faded);
}
#content a:hover {
    padding-left: 10px;
    transition: all 0.4s ease;
    color: var(--text-color);
}
#content ul {
    padding: 0;
    margin: 0;
}
#content ul li {
    list-style-type: none;
    font-size: var(--body-font-size);
}
.myCol {
    font-size: var(--header-font-size);
    display: inline-block;
    padding: 0;
    margin: 0 10px 10px 10px;
    vertical-align: top;
    /*max-width: 20%;*/
    /*width: 23%;*/
	width: 190px;
}
.linkHeader {
    font-weight: lighter!important;
    font-size: var(--link-header-font-size);
    border-bottom: 1px solid var(--text-color);
    margin: 10px 0;
}
.editButton {
    position: absolute;
    padding: 0;
    margin: 0;
    top: 10px;
    left: 10px;
    width: 25px;
    height: 25px;
    text-decoration: none;
    transition: all 0.4s ease;
    color: var(--text-color-faded);  
}
.editButton:hover {
    transition: all 0.4s ease;
    color: var(--text-color);
    cursor: pointer;
}
.footer {
    position: absolute;
    bottom: 2px;
    right: 2px;
    z-index: 2;
    color: rgba(0,0,0,0.75)
}
h1{
    font-family: Century Gothic,CenturyGothic,AppleGothic,sans-serif;
}
.bg-text {
    color: var(--text-color);
    font-family: 'Calibri', sans-serif;
    background-color: rgba(0,0,0, 0.9); 
    /*position: absolute;*/
    /*top: 50%;*/
    /*left: 50%;*/
    /*transform: translate(-50%, -50%);*/
    z-index: 2;
    width: 90%;
    padding: 20px;
    /*border-radius: 2px;*/
    box-shadow: 5px 5px 20px black;
    margin-left: auto;
    margin-right: auto;
}
table {
    width: 100%;
    border-collapse: collapse;
}
.centerTable {
    text-align: center;
}
.tableGreen {
    color: #00ff00;
}
.stuck {
    position: sticky;
    top: 0px;
    background-color: rgba(0,0,0, 0.9); 
}
.right {
    float: right;
    font-style: italic;
    font-size: 0.75em;
}
tr:hover {
    background-color: rgba(255,255,255, 0.25);
}
th {
    padding: 5px 5px;
}
td {
    padding: 2px;
}
#myInput {
  background-image: url('searchicon.png'); 
  background-position: 5px 1px; 
  background-repeat: no-repeat; 
  width: 100%; 
  padding: 3px 3px 3px 35px; 
  border: 1px solid #ddd; 
  margin-bottom: 12px; 
}

@media (max-width: 600px) {
    .narrowScreen {
        display: none;
    }
}