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

body{
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: black;
}

.headings{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
}

.headings h1{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 128px;
}
.headings p{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 32px;
    text-decoration: underline;
    text-underline-offset: 8px;
}

.services{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    font-size: 46px;
    color: white;
    margin-top: 120px;
}

.logo img{
    width: 128px;
}

.ticker-wrapper {
  width: 100%;
  overflow: hidden; /* Hides the text outside the box */
  background: #333;
  color: #fff;
  padding: 10px 0;
  margin-top: 80px;
  position: absolute;
  bottom: 0;
}

.ticker-content {
  display: inline-block;
  white-space: nowrap; /* Prevents text from wrapping to a new line */
  padding-left: 100%; /* Starts the animation from the right edge */
  animation: ticker-move 20s linear infinite;
}

.ticker-item {
  display: inline-block;
  padding: 0 2rem;
  font-family: sans-serif;
  font-size: 32px;
}

/* Pause when the user hovers over the ticker */
.ticker-wrapper:hover .ticker-content {
  animation-play-state: paused;
}

/* The actual animation logic */
@keyframes ticker-move {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
