/* Header*/
header {
  width: 100%;
  height: 5rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1d7c25;

  img {
    height: inherit;
    position: absolute;
    left: 0;
  }

  h2 {
    margin: 0;
    color: white;
  }

  .button-light {
    background-color: #1d7c25;
    color: white;
    border: solid white 1px;
  }
}

/* Navbar */
nav {
  background-color: #333333;
  padding: 1rem;

  #nav-list {
    width: 100%;
    display: flex;
    justify-content: space-around;
  }
  
  .nav-link, .nav-link:hover{
    list-style-type: none;
    text-decoration: none;
    color: white;
  }
}

/* Footer */
footer {
  background-color: #808080;
  padding: 20px;
  text-align: center;
}

.footer-container {
  background-color: #f4f4f4;
  color: #333;
  max-width: 60%;
  margin: 0 auto;
}

/* Aviation Video */
.video-container{
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-container iframe {
  width: 70%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  border: 2px solid #ccc;
  border-radius: 8px;
}

/* Flying Gator Newsletter */
.flying-gator img {
  width: 200px;
  height: auto;
  border: 2px solid #ccc;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.flying-gator img:hover {
  transform: scale(1.05);
}

/* Resources Page */
#info-list {
  list-style-type: none;
  display: grid;
  grid-gap: 20px;
  margin: 2%;
  background-color: #bdb9b99d;
  padding: 50px;
  grid-template-columns: 1fr 1fr;
  text-decoration: none;
}

/* Programs Page */
.linksToDegrees {
  color: #007bff;
  text-decoration: none;
}

.linksToDegrees:hover {
  text-decoration: underline;
}

/* Faculty Contact Page */
.staff-img {
  height: 300px;
  object-fit: cover;
}


/* Mobile styling */
@media (max-width: 500px) {
  header {
    height: 4rem;
  }

  #site-title {
    font-size: large;
  }

  .footer-container {
    max-width: 95%;

    .footer-list {
      display: flex;
      justify-content: center;
    }
  }
}