body {
  font-family: Arial, Helvetica, sans-serif;
}

h1 {
    color: black;
    animation: flash 0.25s infinite; /* Reduced duration for faster flashing */
}

.bannerleft {
    margin-left: -10px;
}

.slave {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.soldout {
    color: red;
    text-decoration: underline;
    animation-name: slavesoldout;
    animation-duration: 1s; /* Reduced duration for faster scaling */
    animation-iteration-count: infinite;
}

.shart {
    width: 100vw;
    padding-top: 6em;
    display: flex;
    flex-direction: row;
}

.niggers1 {
    padding-left: 30px;
}

@keyframes slavesoldout {
  0%   {transform: scale(1.5);}
  50%  {transform: scale(0.5);}
  100% {transform: scale(1.5);}
}

@keyframes flash {
  0%, 100% {
    color: black;
  }
  50% {
    color: white;
  }
}