
body {
    background-color: #13191c;
    color: #defeff;
    font-family: 'Tahoma', Tahoma, Tahoma, Tahoma, Tahoma;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

h1, h2, h3 {
    color: #13191c;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
    border-bottom: 2px solid #13191c;
    padding-bottom: 10px;
}

p {
    margin-bottom: 15px;
}

/* Hyperlinks */
a {
    color: #41f0e7;
    text-decoration: none;
    transition: color 0.1s ease;
}

a:hover {
    color: #347ff7;
    text-decoration: underline;
}

header {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 40px 20px;
    text-align: center;
}

header h1 {
    color: #ffffff;
    border: none;
    margin: 0;
}

footer {
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    position: relative;
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
    margin-top: 40px;
}
.fixed-scrolling-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #090b12;    
  color: #ff5498;               
  padding: 10px 0;
  font-family: Tahoma;
  overflow: hidden;            
  z-index: 9999;                
  border-bottom: 3px solid #ff5498;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: continuousScroll 15s linear infinite;
}

.marquee-content {
  flex-shrink: 0;
  white-space: nowrap;
  padding-right: 50px;         
}

@keyframes continuousScroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%); 
  }
}

body {
  padding-top: 50px; 
}

