/* Reset styles for all elements */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Titillium Web', sans-serif;
}

/* Style for header element */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.header a img {
    max-height: 80px;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-right: 20px;
}

nav ul li:last-child {
    margin-right: 10px;
}

nav ul li:hover {
    color: #b0663bc6;
    transition: all 0.3s ease;
    transform: scale(1.1);
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 24px;
    font-weight: 300;
}

nav ul li a:hover {
    color: #b0663bc6;
    transition: all 0.3s ease;
    transform: scale(1.2);
}

nav ul li a.current {
    color: rgba(190, 123, 75, 0.91);
    font-weight: 600;
}

body {
    max-height: fit-content;
}

.div container {
    max-width: 100vh;
    max-height: 90vh;
    margin: 10px 10px;
    padding: 0 10px;
    overflow-x: hidden;
    /* margin: 5px; */
}

/* Below is styling for body navigation */

.content {
    position: relative;
    z-index: 1;
    
  }
  
  .menu {
    position: absolute;
    top: 10px;
    left: 40px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style: none;
    background-color: rgba(20, 20, 20, 0.4);
    stroke: #f1f1f1;
    stroke-width: 10px;
    border-radius: 5px;
  }
  
  .menu li {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: -5px;
    font-size: 20px;
    font-weight: 300;
  }
  
  .menu a {
    display: block;
    padding: 10px;
    margin: 5px;
    color: rgb(250, 246, 246);
    text-decoration: none;
    background-color: transparent;
    /* transition: background-color 0.1s; */
    font-variant-caps: small-caps;
    font-weight: 400;
    font-size: 32px;
    
  }
  
  .menu a:hover {
    color: #e68751c6;
    stroke: #f1f1f1;
    /* font-weight: 400; */
    /* font-size: 32px; */
    transition: all 0.3s ease-out;
    transform: scale(1.1);
  }

  a.current {
    color: #e68751c6;
    stroke: #f1f1f1;
  }
    
/* Below is for the link to pages horizontal across top */
/* .menu {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8f8f8;
    padding: 10px;
}

.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu ul li {
    margin: 0 10px;
}

.menu ul li a {
    display: block;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    color: #333;
    text-decoration: none;
    position: relative;
}

.menu ul li a:before {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #333;
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s;
}

.menu ul li a:hover:before {
    visibility: visible;
    transform: scaleX(1);
}

.menu ul li a.active:before {
    visibility: visible;
    transform: scaleX(1);
} */

/* END FOR styling for body navigation */


/* Style for scroller element */

.scroller {
    white-space: nowrap;
    display: flex;
    overflow-x: scroll;
    max-width: 100%;
    /* overscroll-behavior: auto contain; */
}

.scroller::-webkit-scrollbar {
    width: 5px;
}

.scroller::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

.scroller::-webkit-scrollbar-thumb {
    background-color: grey;
}

.scroller img {
    height: 85vh;
    max-width: 100%;
}

.images {
    display: flex;
    margin: 0;
    padding: 0;
    width: max-content;
    /* height: max-content; */
    list-style: none;
}

.images li {
    flex: 0 0 auto;
    margin-right: 10px;
}

/* BEGIN NOT RIGHT CLICK */
/* .image-container {
    position: relative;
} 

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

img {
    filter: blur(0);
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
} */


/* Style for footer element */
footer {
    background-color: white;
    padding: 10px;
    text-align: center;
}

footer p {
    color: #6e6e6e;
}