body {
  background-image: url("/shrines/shrines_resource/hockeybg_r.png");
  background-color: black;
  color: black;
  font-family: Verdana;
}

.flex {
  display: flex;
}

#box {
            width: 1120px;
            border: 4px solid white;
            border-radius: 10px;
            color:black; 
            background-color:black;
            display:inline-block;
            margin-left: 10px;
            margin-top: 10px;
            padding: 2px;
            overflow-y: scroll
 }
 
#box2 {
    
    display:inline-block;
    width: 550px;
    text-align:center;
    background-color:white;
    color:black;
    margin-left: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 2px;
    border: 4px solid black;
    border-radius: 10px;
}

#box3 {
            background-color: black;
            width: 1118px;
            border: 4px ridge;
            border-color: violet;
            border-radius: 10px;
            color:white; 
            display:inline-block;
            text-align:center;
            margin-left: 10px;
            margin-top: 10px;
            padding: 2px;
 }
 
main {
  max-width: 1000px;
  min-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  margin-top: 20px;
  padding: 10px;
  box-sizing: border-box;
}

.entries {
  border: solid #e52534 5px;
  border-radius: 10px;
  background: black;
  width: 70%;
  margin-left: 5px;
  overflow: scroll;
}

.navigation {
  border: solid #e52534 5px;
  border-radius: 10px;
  background: black;
  padding-left: 5px;
  margin-bottom: 5px;
}

.sidebar {
  width: 30%;
  margin-right: 5px;
}

.linky {
    text-decoration: none;
    font-size: 18px;
    color:white;
    font-family:"Times New Roman";
    margin-right:10px;
    margin-bottom:30px;
    margin-left:10px;
}

.pin {
  height: 17px;
  image-rendering: crisp-edges;
}

a {
    text-decoration: none;
    color: #000;
}

.marquee {
  height: 400px;
  width: 100%;

  overflow: hidden;
  position: relative;
  padding: 8px 0 4px 0;
}


/* would need to be adjusted depending on time */
.marquee .marqueeone{
  animation: marquee 10s linear infinite
}

.marquee .marqueetwo{
  animation: marquee 10s linear 7s infinite 
}

.marquee .marqueethree{
  animation: marquee 10s linear 13s infinite
}

.marquee .marqueefour{
  animation: marquee 10s linear 16s infinite
}
/* even out the elements */
.marquee div {
  position: absolute;
  width: 100%;
  left: 100%;
  height: 400px;
  display: flex;
  justify-content: space-between;
}

.marquee:hover div {
  animation-play-state: paused;
}

/* add delay at the end of animation so you dont start while another div is going */
@keyframes marquee {
  0% { left: 100%; }
  100% {left: -300%}
}