html {
  margin: 0;
  width: 98%;
}

body {
  background-image: url("background.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  font-family: "Fira Code", monospace;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  width: 98%;
  margin: 0;
}

.picture_link_container img {
  max-width: 100px;
  max-height: 100px;
  margin-left: 10px;
  margin-right: 10px;
  object-fit: cover;
}

.topnav {
  display: table;
  position: absolute;
  top: 0;
  left: 0;
  table-layout: fixed;
  width: 98%;
  grid-template-columns: auto auto auto auto auto;
  padding: 10px;
}

.topnav .nav_element {
  display: table-cell;
  vertical-align: middle;
  padding: 10px;
  font-size: 30px;
  text-align: center;
}

.sidenav {
  position: relative;
  top: 150px;
  left: 0;
  padding: 10px;
  clear: both;
}

main {
    display: flexbox;
    position: relative;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-left: 15%;
    margin-right: 10%;
    margin-bottom: 20px;
}

.picture_paragraph {
  display: flex;
  gap: 30px;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.85);
}

.picture_container {
  align-items: center;
  flex: 0 0 auto;
}

.picture_container img {
  width: 200px;
  height: 200px;
  display: block;
  border-style: solid;
  border-radius: 50%;
  object-fit: cover;
}

.separator {
  margin-top: 10%;
  text-align: center;
}

.event_stream_container {
  margin-top: 20px;
}

.text_container {
  width: 98%;
}

.event_header {
  margin-top: 20px;
  display: table;
  width: 100%;
}

.event_title {
  display: table-cell;
}

.event_date {
  display: table-cell;
  text-align: right;
}

footer {
  position: fixed;
  right: 10px;
  bottom: 10px;
  width: 100%;
  background-color: transparent;
  color: gray;
  text-align: right;
  z-index: -10;
}