/* Hide Scroll Bar */
  ::-webkit-scrollbar {
    display: none;
}

html{
    scroll-behavior: smooth;
    background-color: #d4ff00;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

h1{
    text-align: center;
}

.sectionScroller {
    scroll-snap-type: y mandatory; /* Enable snapping */
    overflow: auto; /* Enable scrolling */
    height: 100vh; /* Full viewport height */
    scroll-behavior: smooth; /* Smooth scrolling */
}

section {
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    font-size: 2rem;
  }

.verticalSection {
display: flex;
flex-direction: column; /* Make section content vertical */
align-items: center; /* Center the circles and text */
gap: 20px; /* Add space between the content */
}

.h1{
    color: black;
}

footer {
    background-color: #bce006;
    text-align: center;
    padding: 1em;
    width: 100%;
}