:root {
  --rssSpeed: 300s;
}

@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, h1, h5 {
  padding: 0;
  margin: 0;
}

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

.imageEl {
  position: fixed;
  top: 200px;
  left: 35px;
  width: 930px;
  height: 700px;
}

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

.triangle-decoration {
  position: fixed;
  top: 0;
  right: 0;
} 

/* .logoEl {
  position: fixed;
  top: 40px;
  left: 40px;
  height: 175px
}

.logoEl img {
  width: auto;
  height: 100%;
  margin-left: 0;
  display: block;
} */

.locationNameEl {
  position: fixed;
  top: 90px;
  left: 20px;
  width: 1020px;
  text-align: center;
}

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

.openingHoursEl {
  position: fixed;
  top: 285px;
  right: 10px;
  width: 930px;
}

.openingHoursEl h1 {
  padding: 0 0 30px 50px;
  font-size: 55px;
 }

.openingHoursEl table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

.openingHoursEl td {
  text-align: center;
  font-size: 48px;
  line-height: 70px;
}

.dayAndTimeEl {
  /* background-color: rgb(0, 94, 184); */
  color: white;
  position: fixed;
  top: 0;
  right: 0;
  width: 528px;
  height: 96px;
  padding: 25px 0;
  z-index: 2;
}

.dayAndTimeEl span {
  display: block;
  font-size: 55px;
  font-weight: bold;
  text-align: right;
  padding-right: 20px;
}

#time {
  margin-top: 20px;
}

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

.marquee {
  padding-top: 44px;
  padding-bottom: 36px;
}

.marquee p {
  padding-left: 100%;
  font-size: 55px;
  display: inline-block;
  animation: marquee var(--rssSpeed) linear infinite;
}

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