:root {
  --rssSpeed: 150s;
}

@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: 240px;
  left: 40px;
  width: 900px;
  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: 40px;
  left: 500px;
  width: 1020px;
  text-align: center;
}

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

.noticeEl {
  position: fixed;
  top: 510px;
  right: 40px;
  width: 770px;
  height: 415px;
  overflow: hidden;
}

.noticeEl h5 {
  margin: 0;
  padding: 0;
  text-align: right;
  font-size: 40px;
}

.noticeEl p {
  font-size: 40px;
  padding: 20px;
}

.openingHoursEl {
  position: fixed;
  top: 356px;
  right: 20px;
  width: 936px;
}

.openingHoursEl h1 {
  text-align: right;
  padding: 0px 10px 45px 0;
  font-size: 55px;
 }

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

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

.dayAndTimeEl {
  background-color: rgb(0, 94, 184);
  color: white;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 37%;
  padding: 40px 0;
}

.dayAndTimeEl p {
  font-size: 55px;
  text-align: right;
  padding-right: 40px;
}

.rssEl {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 63%;
  border-right: 1px solid white;
  white-space: nowrap;
  overflow: hidden;
}

.marquee {
  background-color: rgb(0, 94, 184);
  color: white;
  padding: 40px 0;
}

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

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