/* Custom Styles */

body, html {
  height: 100%;
  margin: 0;
}

.header-column {
  background-color: #343a40;
  color: #fff;
  padding: 15px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  max-height: 40px;
  margin-right: 10px;
}

.content-column {
  padding: 20px;
  margin-top: 60px;
}

.image-column {
  padding: 20px;
  margin-top: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-column img {
  width: 100%;
  height: auto;
  max-height: 500px; /* Adjust the maximum height as needed */
  object-fit: cover;
}

 