html, body {
    height: 100%;
}

html {
  display: table;
  margin: auto;
  width: 100%;
}

body {
    display: table-cell;
    vertical-align: middle;
    background-color: white;
    font-family: "Georgia", serif;
    background-image: url('/media/grainyBackground.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.headline {
    color: rgb(0, 0, 0);
    text-shadow: 0 0 10px #FFFFFF;
    text-align: center;
    margin: 20px;
}

.headline h1, h2 {
    opacity: 0.8;
}

.card {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: rgb(215, 213, 213);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 66%;
    margin: 2cm auto;
}

.card a {
    color: #85bcc9;
    text-decoration: none;
}

.card h1 {
    white-space: nowrap;
}

.row {
    display: flex;
}

.columnMain {
  flex: 80%;
  /* padding: 0px; */
}

.columnSide {
  flex: 20%;
  /* padding: 0px; */
}

.sidenav {
  /* height: 100%; Full-height: remove this if you want "auto" height */
  width: auto; /* Set the width of the sidebar */
  position: left; /* Fixed Sidebar (stay in place on scroll) */
  z-index: 1; /* Stay on top */
  top: 0; /* Stay at the top */
  right: 0;
  /* background-color: #111; Black */
  overflow-x: hidden; /* Disable horizontal scroll */
  /* padding-top: 20px; */
  /* padding: 20px 20px 20px 0px; */
  text-align: right;
}

/* The navigation menu links */
.sidenav a {
  padding: 6px 8px 6px 0px;
  text-decoration: none;
  font-size: 18px;
  color: #818181;
  opacity: 0.7;
  display: block;
}

.sidenav a.active {
    color: #818181;
    opacity: 1;
}

.sidenav a img {
    float: right;
    width: 25px;
    height: 25px;
    padding: 0px;
    padding-left: 7px;
    opacity: 0.7;
}

.sidenav a.active img {
    opacity: 1;
}

.footnote {
    color: #818181;
    font-size: 14px;
}

.footnote hr {
    height: 1px;
    border: none;
    color: #818181;
    background-color: #818181;
}

.links-list {
    list-style-type: circle;
    padding-left: 20px;
    
}
.links-list li {
    margin-bottom: 15px;
}

.gridContainer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}
.gridContainer div {
  text-align: center;
}

.gridContainer div img {
    height: 220px; 
}

img.filmPoster {
    border: 5px solid #555; 
    border-radius: 5px;
}

img.filmPosterLarge {
    width: 200;
    float: left;
    margin-right: 15px;
}