:root {
  --rssSpeed: 309s;
}

@font-face {
  font-family: 'muliregular';
  src: url('muli-regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
}

p, td {
  margin: 0;
  padding: 0;
  font-size: 55px;
  /* font-weight: bold; */
}

h1 {
  margin: 0;
  padding: 0;
  font-size: 70px;
}

.content {
  font-family: 'muliregular';
  color: rgb(0, 94, 184);
  background-color: white;
  height: 1080px;
  width: 1920px;
}

.topBar {
  z-index: 0;
  width: 100%;
  height: 150px;
  background-color: rgb(0, 94, 184);
}

.imageEl {
  position: fixed;
  top: 185px;
  left: 40px;
  width: 1105px;
  height: 700px;
}

.imageEl > img, .imageEl > video {
  display: block;
  margin: auto;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.locationNameEl {
  color: white;
  position: fixed;
  width: 1840px;
  height: 180px;
  top: 40px;
  left: 40px;
  text-align: center;
}

.noticeEl {
  position: fixed;
  top: 240px;
  right: 40px;
  width: 690px;
  height: 620px;
}

.noticeEl h1 {
  margin: 0;
  margin-bottom: 30px;
  padding: 0;
  text-align: center;
  text-decoration: underline;
}

.noticeEl p {
  margin: 0;
}

.bottomBar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: rgb(0, 94, 184);
  color: white;
  white-space: nowrap;
  overflow: hidden;
}

.bottomBar p {
  margin: 30px 0 0 0;
  font-weight: bold;
}

.bottomBar > .date {
  padding-left: 40px;
  float: left;
  clear: left;
}

.bottomBar > .time {
  padding-right: 40px;
  float: right;
  clear: right;
}

.opening-hours {
  position: fixed;
  top: 650px;
  left: 40px;
  height: 340px;
  width: 1060px;
}

.opening-hours table {
  width: 100%;
}

#openingHours td {
  line-height: 40px;
  text-align: center;
}
  
.opening-hours h1 {
  margin: 0;
  margin-bottom: 30px;
  padding: 0;
  text-align: center;
  text-decoration: underline;
}

.rssEl {
  position: fixed;
  bottom: 115px;
  left: 0;
  width: 100%;
  height: 80px;
  white-space: nowrap;
  overflow: hidden;
}

.marquee {
  margin-left: 90%;
}

.marquee p {
  padding-top: 10px;
  display: inline-block;
  animation: marquee var(--rssSpeed) linear infinite;
}

@keyframes marquee {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(-100%, 0); }
}