.banner {
    width : 500spx;
    height: 300px;
    padding-left: 15px;
      padding-right: 15px;
}

  body {
      background-image: url('tile_background.png');
      text-align: center;
      font-family: 'Arial', sans-serif;
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      min-height: 100vh;
      width: 100vw;
      overflow-x: hidden;
      
    }

    h1 span {
      font-size: 100px;
      font-weight: bold;
      display: inline-block;
    }
      .title-box {
      display: inline-block;
      padding: 20px 40px;
      border: 4px solid rgba(0, 0, 0, 0.3); /* Semi-transparent black border */
      border-radius: 15px;
      background-color: rgba(255, 255, 255, 0.2); /* Optional: slight see-through background */
      backdrop-filter: blur(5px); /* Optional: adds a frosted-glass effect */
      
    }


     .title-box2 {
      display: inline-block;
      padding: 20px 40px;
      border: 4px solid rgba(0, 0, 0, 0.3); /* Semi-transparent black border */
      border-radius: 15px;
      background-color: rgba(255, 255, 255, 0.2); /* Optional: slight see-through background */
      backdrop-filter: blur(5px); /* Optional: adds a frosted-glass effect */
      margin-left: auto;
      margin-right: auto
    
      
    }

    .green { color: #006600;  font-size: 100px;}  /* Dark green */
    .red   { color: #ff0000; font-size: 100px;}  /* Bright red */
    .yellow{ color: #ffcc00; font-size: 100px;}  /* Yellow */

    h1 {
      font-size: 50px;
      color: darkblue;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      margin-top: 50px;
      margin-bottom: 20px;
       font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
         transition: duration 0.3s, transform 0.3s;
    }

    @keyframes small-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.bounce {
  animation: small-bounce 1.5s ease-in-out infinite;
}

.carded {
  
  margin-top: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  float: right;
}

/* Splash Screen Styling */
#splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: lightblue;
  color: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: opacity 1s ease-out;
}

/* Logo styling */
#logo {
  width: 300px;
  height: auto;
  margin-bottom: 20px;
}

/* Progress bar container */
.progress-container {
  width: 80%;
  background: #333;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 20px;
}

/* Progress bar itself */
.progress-bar {
  height: 20px;
  background: gray;
  width: 0%;
  transition: width 0.1s linear;
}


.Aluinfo {
  margin: auto;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: rgba(245, 245, 245, 0.7); /* whitesmoke with slight opacity */
  width: 400px;
  height: 400px;
  /*Ai used to fix styling */
}

@media (min-width: 992px) {
  .Aluinfo {
    margin-top: 300px;
    
  }
  .majors {
    margin-top: 100px;
  }
}
/* learned from AI response */

.buttons {
  background-color: darkblue;
  color: white;
  border: solid whitesmoke;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 12px;
  transition-duration: 1s;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.buttons:hover {
  background-color: whitesmoke;
  color: darkblue;
  border: solid gray;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 12px;
  transform: scale3d(1.1, 1.1, 1);
}

.majors {
  
  background-color: rgba(245, 245, 245); 
  margin: auto;
  margin-top: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  align-items: center;
  text-align: center;
  width: fit-content;
  height: fit-content;
  padding: 20px;
  width: 350px;
  height: 230px;
}

.locations {
  text-align: left;
  padding-left: 10px;
  font-size: 10px;
  max-height: 150px;
  overflow-y: auto;
}

/* AI used to fix styling */

.majors2 {
  
  background-color: rgba(245, 245, 245); 
  margin: auto;
  margin-top: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  align-items: center;
  text-align: center;
width: 350px;
  height: 230px;
}

h2 {
  font-size: 25px;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  transition: duration 0.3s, transform 0.3s;
}

h2:hover {
transform: scale(1.05);
}

h1:hover {
transform: scale(1.05);
}

.textres{
 font-size: 10px;
}

.home {
  margin: auto;
  border-radius: 15px;
}