
.img1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  object-fit: cover;
  z-index: -1; /* send it behind everything */
}

@media (max-width: 480px) {
  
.img1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 85%;
  object-fit: cover;
  z-index: -1; /* send it behind everything */
}

}
.Secure-Trading-Platform{
  color:white;
  border-radius: 5px;
  padding: 1px 5px;
}

.day-text{
  font-size: 15px;

}

.diamond{
  color: aqua;
  font-size: 2em;
}

.Bitcoinaccepted{
  color: goldenrod;
  font-size: 16px;
  font-weight: bold;
}




/* ticker css/animation */

.ticker-container {
  width: 100%;
  background: #111;   
  color: white;
  padding: 12px 0;
  overflow: hidden;
  position: relative;
}

.ticker-content {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%; 
  animation: ticker 20s linear infinite;
}

.ticker-content span {
  margin: 0 5px;
  font-size: 1rem;
  font-weight: 500;
}

.up {
  color: #4ade80; 
}
.down {
  color: #f87171; 
  margin-left: 6px;
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}