body {
    font-family: Arial, sans-serif;
    margin: 0;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    max-width: 1700px;
    background-color: #f0f0f0;
    background-attachment: fixed;
    background-image:  url("../assets/background.jpeg");
    background-size: cover;
}

table {
    border-collapse: collapse;    
    padding: 0px 0;
    border:none;
    text-align: center;    
}

td {
    background: #ffffff;    
    padding: 0px 0;
    border:none;
    text-align: center;
}

td.textCell {
    background:rgba(255,255,255,0.95);    
    padding: 0px 0;
    border:none;
    text-align: left;    
}

.gradientcell {
    background: linear-gradient(115deg, #090a0b, #13506b); /* Horizontal gradient */                
    padding: 0px 0;
    text-align: center;
}



header {
    background: #35424a;
    color: #ffffff;
    padding: 10px 0;
    text-align: center;
}

@font-face {
    font-family: 'RussoOne'; /* Name your font family */
    src: url('RussoOne-Regular.ttf'); /* Locate the .ttf file within your directory*/
}

h1 {
    margin: 0;
    color: #ffffff;
    font-family: 'RussoOne', sans-serif; 
}

ul {
    text-align: left;
    font-size: 16px;
}

nav {
    margin: 20px 0;
}

a {
    font-size: 16px;
}

p {
    font-size: 16px;
    margin: 20px;
}

 /* unvisited link */
 a:link {
    color: white;
  }
  
  /* visited link */
  a:visited {
    color: white;
  }
  
  /* mouse over link */
  a:hover {
    color: darkgray;
  }
  
  /* selected link */
  a:active {
    color: lightgray;
  } 

.imaslogo {    
    display: block;
    margin-left: auto;
    margin-right: 18px;
    height: 64px;
 }



.center {
    margin-left: auto;
    margin-right: auto;
    width: 98%;
 }

 model-viewer {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: 400px; /* Set the desired height */
}

footer {
    text-align: center;
    padding: 20px 0;
    background: #35424a;
    color: #ffffff;
    position: relative;
    bottom: 0;
    width: 100%;
}

.rhscaption {
    position: relative;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
}



/* gallery styles below: */
.gallery-container {
    position: relative;
    width: 98%;
    margin: auto;
    overflow: hidden;
    background-color:  rgba(255,255,255,0.95); 
}


.gallery-item {
    position: relative;
    object-fit: contain;
    width: 100%;
    height: 740px;
    display: none;	
}

.drone360-item {
    position: relative;
    object-fit: contain;
    width: 100%;
    height: 700px;
    display: none;	
}



.gallery-image {    
    width: 100%;
    height: 700px;
    object-fit: contain;
    display: block;
    margin: auto;        
}

.caption {    
    position: absolute;    
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 16px;
}

button.prev, button.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

button.prev {
    left: 15px;
}

button.next {
    right: 15px;
}