body {
  color: #000435;
  background-color: lightskyblue;
  font-family: sans-serif;
  margin: auto;
  max-width: 1280px;
}

html{
  cursor: url(cursor.png), auto;
}

.navbar {
  background-color: #313236;
  border-radius: 2px;
  max-width: 800px;
}

h1{
  text-align: center;
  font-family: georgia;
}

p{
  text-align: center;
  font-family: seaweed script;
}

h2{
  font-family: courier new;
}

.section:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.section {
    text-align: center;
    background-color: navy;
    color: white;
}

.section1 {
    text-align: center;
    background-color: purple;
    color: gold;
}

.navbar a {
  color: #aaa;
  display: inline-block;
  font-size: 15px;
  padding: 10px;
  text-decoration: none;
}

.navbar a:hover {
  color: #ffffff;
}

.scrolling_text {
    background-color: purple;
    width: 100%;
    overflow: hidden;
    display: flex;
    white-space: nowrap;
}

.s_text {
    font-size: 20px;
    font-weight: 700;
    color: gold;
    animation: animateText 20s linear infinite;
}

@keyframes animateText {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}