body{
     font-family: "Bungee", sans-serif;
  font-weight: 400;
  font-style: normal;
    letter-spacing: 0.5rem;
    background-color: #404258;
}
#heading{
    position: relative;
    background-color: yellow;
    height: 4rem;
    overflow: hidden;
    width: 100%;
}
#heading>.scroll {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  animation: move 10s linear infinite;
}
#heading h1{
  display: inline-block;
  margin: 0;
  padding-right: 76%; 
}
#container{
    background-color: #474E68;
    display: grid;
}
.colDiv{
    border: 1px solid grey;
}
.block{
   background-image: url(block.png);
   background-repeat: no-repeat;
  background-size:120%;
  background-position: center;
}
.bold-placeholder::placeholder {
  font-weight: bold;
  color: black;
}
.rat{
  background-image: url(rat.png);
  background-repeat: no-repeat;
  background-size:80%;
  background-position: center;
}
.cheese{
  background-image: url(cheese.png);
    background-repeat: no-repeat;
  background-size:80%;
  background-position: center;
}
@keyframes move {
  from {
    left: 0%;
  }
  to {
    left: -100%;
  }
}
