/* Global Styles */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #000; /* Black page background */
    font-family: Arial, sans-serif;
    color: white; /* White text on black background */
}

.marquee {
    position: fixed; 
    top: 30px; 
    left: -100%;
    width: calc(200% + 20px); 
    overflow-x: auto;
    padding-left: 1em; 
    font-size: 18px; /* Larger font size for a more retro look */
}

.marquee p {
    display: inline-block;
    margin-right: 10px; 
    animation-name: marquee;
    animation-timing-function: linear;
    animation-duration: infinite;
}

@keyframes marquee {
  from {
      transform: translateX(-300px);
  }
  to {
      transform: translateX(100%) !important;
  }
}

.visitor-counter {
    position: fixed; 
    top: -50px; 
    left: calc(100% + 20px);  
    background-color: #333; /* Darker gray to fit with the black background */
    padding: 10px;
    border-radius: 5px; /* To give it a more retro look */
}

.visitor-counter span {
    color: white;
}

.content-area {
    margin-top: 250px; 
    text-align: center; 
}

/* Hover effects */

.content-area h1, .content-area p {
    transition-duration: 0.3s;
}
    
.content-area h1:hover, .content-area p:hover {
    color: #06c;
}
