body {
	height: 100%;
    background: linear-gradient(90deg, rgb(46, 20, 212) 10%, rgb(231, 115, 6) 100%);
	background-position-x: 100%;
	/*background-color: gray;*/
    background-repeat: no-repeat;
    background-attachment:  scroll;
    background-size: 200% 100%; /* 200% will make the gradient span twice the viewport height */
}

/* Navbar Styles */

.navbar {
	z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right, #333, #4f4f4f, #333);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    position: fixed;
    border-radius: 5px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 50px;
    white-space: nowrap;
    overflow: hidden;
    /*transition: all 0.3s ease;*/
}

.navbar div {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 3px;
    padding: 10px 20px;
    background-color: transparent; /* Let the gradient show through */
    color: white;
    cursor: pointer;
    border-radius: 3px;
    transition: background-color 0.3s, transform 0.2s;
    white-space: nowrap;
    overflow: hidden;
}

.navbar div:hover {
    background-color: rgba(255, 255, 255, 0.1); /* Subtle hover effect */
    transform: translateY(-2px); /* Slight lift effect */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Content Styles */

.contentHolder {
    position: relative;
	margin-top: 100px;
	height: 5000px;
    background-color: rgba(0, 0, 0, 0.0);
}

.contentHolder p {
	margin-top: 200px;
}

.contentShifter {
	background-color: rgba(0, 0, 0, 0.0);
    position: fixed;
    top: 100;
    left: 0;
    width: 100%; /* Or as needed for your content */
    transition: left 0.3s ease; /* Smooth scrolling effect */
}

.contentShifterVertical {
	margin-top: 100px;
	background-color: rgba(0, 0, 0, 0.0);
    position: fixed;
    top: 0px;
    left: 50%;
    width: 50%; /* Or as needed for your content */
    transition: left 0.3s ease; /* Smooth scrolling effect */
}

/* Webkit browsers like Chrome, Safari, and newer versions of Opera */
::-webkit-scrollbar {
  width: 12px;
}
/**/
::-webkit-scrollbar-thumb {
  background: linear-gradient(0deg, rgb(231, 115, 6) 100%, rgb(46, 20, 212) 0%);
  /*background: linear-gradient(45deg, #f06, #9f6);*/
  border-radius: 6px;
}

::-webkit-scrollbar-track {
  /*background: linear-gradient(45deg, #9f6, #f06);*/
  background: linear-gradient(90deg, rgb(128, 62, 121) -220%, rgb(231, 115, 6) -10%);
  /*background: linear-gradient(90deg, rgb(231, 115, 6) 20%, rgb(46, 20, 212) 80%);*/
  background-color: rgba(0, 0, 0, 0);
  border-radius: 0px;
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 0, 150, 0.8) rgba(247, 247, 247, 0.5);
}
