html, body {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
  }
  body {
    display: flex;
    flex-direction: column;
  }
  .content {
    flex: 1;
    padding: 1rem;
  }

  .navbar {
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }

  .text-content {
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  .dropdown:hover > .dropdown-menu {
    display: block;
  }

  .header-title {
    font-family: 'Arial', sans-serif;
    font-size: 2.5rem;
    color: #007BFF;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    border-bottom: 2px solid #007BFF;
    padding-bottom: 10px;
}

.square-img {
  width: 100%;
  height: 0;
  padding-bottom: 100%; /* Aspect Ratio 1:1 */
  object-fit: cover;
  display: block;
}