main{
    width:65% !important;
}

h1{
    text-align: center;
}

.header-image{
    max-height: 100px;
}

header a{
    text-align: center;
    margin:5px;
}

header{
    padding: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    width: 100%;
    margin: 0;
    max-width: 100% !important;
}

.dash-card-text{
    height: 100%;
    max-width: 50%;
    margin: auto;
    font-size: 25px;
}
.computerview{
    display: contents;
}

.phoneview{
    display: none;
}

    h2{
        text-align: center;
    }
    .contact{
        text-align: center;
        margin:0 auto;
    }

    .banner-image {
  background-image: url('./images/banner.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; /* Ensures the image covers the entire container */
  height: 400px; /* Set the desired height */
  color: white; /* Ensures text is visible */
  padding-top: 100px; /* Adjust padding as needed for content positioning */
}
.row {
  display: flex;
  align-items: center; /* Centers items vertically */
  /* height: 100vh; /* Example: make it full screen */
}

.gallery {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  background: #ddd;
  touch-action: pan-y;
  position: relative;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  transition: transform 0.25s ease;
}

/* Navigation buttons */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  color: white;
  font-size: 22px;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav:hover {
  background: rgba(0,0,0,0.7);
}

.nav:active {
  transform: translateY(-50%) scale(0.95);
}

.prev {
  left: 8px;
}

.next {
  right: 8px;
}

.previmages{
    max-width: 100%;
  display: block;
  margin: 0 auto;
  transform-origin: center center;
}

.cursor-pointer{
    cursor: pointer;
}

.cursor-pointer:hover{
    cursor: pointer;
    opacity: 75;
}