body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  width: 100%;
  background-repeat: repeat;
  background-attachment: fixed;
  background-position: center;
  background-color:black;
}

.container{
}

.stickers{
  /**  display: grid; 
 grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0px 0px; **/
    margin:10px;
    display: grid;
  justify-content: space-around;
}

.buttons{
  margin-top:10px;
    margin: 5px;
}

.neocities{
margin-top: 40px;
}

h2{
font-family: helvetica;  font-size:20px;
  color:white;
}

.catra {
  justify-content: center;
}

.button {
  width: 88px;
  font-size: 10px;
  background-color: white;
  color: black;
  height: 21px;
  margin-bottom: 10px;
}


/**--SCROLL--**/

#scroll-container {
  border: 1px solid black;
  border-radius: 2px;
  overflow: hidden;
  height:29px;
}

#scroll-text {
  text-align: right;
  /* animation properties */
  -moz-transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  
  -moz-animation: my-animation 20s linear infinite;
  -webkit-animation: my-animation 25s linear infinite;
  animation: my-animation 35s linear infinite;
}

/* for Firefox */
@-moz-keyframes my-animation {
  from { -moz-transform: translateX(-100%); }
  to { -moz-transform: translateX(100%); }
}

/* for Chrome */
@-webkit-keyframes my-animation {
  from { -webkit-transform: translateX(-100%); }
  to { -webkit-transform: translateX(100%); }
}

@keyframes my-animation {
  from {
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  to {
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }}