{
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Ensures padding doesn't grow the element width */
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.large-text {
  font-size: 50px;
  color: #E4EAF0;
}

.mid-text {
  font-size: 20px;
}

.small-text {
  font-size: 14px;
}

h1 {
    color: #01040A;
    margin-bottom: 1rem;
    text-align: center;
}

body {
    font-family: Tahoma, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #5C5959;
    padding: 20px;
    margin: 0;
    padding-top: 70px; /* adjust based on banner height */
}

/*    logo for banner    */
/* Logo container */
.logo-container img {
  width: 50vw;       /* 50% of the viewport width */
  height: auto;
  display: block;
  margin: 0 auto; /* centers + space below */
}

.logo-container {
  text-align: center;
}


/*    nav-bar    */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #333;
  justify-content: center;
  display: flex;
  flex-direction: column;
}

.nav-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}

.nav-bar a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  padding: 8px 12px;
  justify-content: center;
  transition: 0.3s;
}

.nav-bar a:hover {
  background-color: #555;
  border-radius: 5px;
}

/*    nav-row    */
.nav-row {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 10px;
}

.nav-row a {
  text-decoration: none;
  color: white;
  background-color: #555;
  padding: 10px 15px;
  border-radius: 5px;
}

.nav-row a:hover {
  background-color: #777;
}

/*    section settings (part 1)    */
section img {
  width: 100%;
  height: auto;
  display: block;
}

.section-button {
  display: inline-block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  background-color: #444;
  color: white;
  padding: 15px;
  border-radius: 8px;
  transition: 0.3s;
}

.section-button:hover {
  background-color: #80;
}
.page-section {
  min-height: 100vh;     /* makes each section fill the screen */
  padding: 60px;
  box-sizing: border-box;
}

/*    settings coloring section    */
#home {background-color: #f5f5f5;}
#agi {background-color: #e0e0e0;}
#learn{background-color: #d6d6d6;}
#power {background-color: #cccccc;}
#about {background-color: #d6d6d6;}
#contact {background-color: #cccccc;}

/*    bottom    */
.bottom-banner {
  background-color: #222;
  color: white;
  text-align: center;
  padding: 20px;
}

/*   footing    */
.footer-links {
  margin-top: 10px;
}

.footer-links a {
  color: #ccc;
  margin: 0 10px;
  text-decoration: none;
}

.footer-links a:hover {
  color: white;
}

/*    html settings    */
html {
  scroll-behavior: smooth;
}
    background: #2980b9;
    cursor: pointer;
}

/* 6. UTILITY CLASSES 
   Quick fixes you can apply to any element. */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
