@font-face {
    font-family: 'gasstationcat'; /*a name to be used later*/
    src: url('gasstationcat.ttf'); /*URL to font*/
}

@keyframes wiggle {
    0% { transform: rotate(2deg); }
    50% { transform: rotate(-2deg); }
    100% { transform: rotate(2deg); }
}

.wiggle-animation {
    animation: wiggle 0.25s ease-in-out; /* Adjust duration and easing as needed */
}

@keyframes slideLeft{
    from {transform: translateX(0%);}
    to {transform: translateX(100%);}
}

.SL-animation {
    animation: slideLeft 0.25s ease-in-out; /* Adjust duration and easing as needed */
}

@keyframes slideRight{
    from {transform: translateX(0%);}
    to {transform: translateX(-100%);}
}

.SR-animation {
    animation: slideRight 0.25s ease-in-out; /* Adjust duration and easing as needed */
}

::-webkit-scrollbar {
    width: 15px;
    background: #b7b7b7;
  }

::-webkit-scrollbar-thumb {
    background: #212121;
}
  

::-webkit-scrollbar-thumb:hover {
    background: #161616;
    cursor: grab;
}

html,body {
    padding:0;
    margin:0;
    font-family: 'gasstationcat';
    overscroll-behavior-block: none;
 }

#logoContainer {
    position: fixed;
    top: 0;
    left: 0;
    height: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index:-85;
}

#logo {
    max-width: max(25%, 300px);
    height:auto;
}

#wrapper { 
    position:absolute;
    height:100%;
    width:100%;
    z-index: -99;
}

.panels { 
    position:relative;
    width:100%;
}

#fixed { 
    position:fixed;
    height:100%;
    top:0;
    left:0;
    z-index: -90; 
    background: rgb(70, 70, 70);
    /*background-image: url('bg.jpg');*/
}

#scroll { 
    margin-top: min(70vw, 675px);
    height:150%;
    background: rgb(100, 100, 100);
    z-index: -80; 
}

#bandContainer{
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    margin-top: 175px;
}

.members {
    width:30%;
    height:auto;
}

.members:hover {
    cursor: pointer;
}

#arps{
    margin: 0px;
}

#aglet{
    margin: 0px;
}

#marlow{
    margin: 0px;
}

#labelContainer{
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    background: rgb(120, 120, 120);
}

.label{
    text-align: center;
    font-size: 20px;
    width: 50%;
}

.vlabel{
    text-align: center;
    font-size: 40px;
    width: 100%;
    height: 100%;
    margin: 0;
    background: rgb(100, 100, 100);
}

#sliderContainer{
    display: flex;
    gap: 4%;
    justify-content: center;
    background: rgb(120, 120, 120);
    padding-bottom: 20px;
}

.slider{
    appearance: none;
    background: url('aglet.png');
    border-radius: 12px; /*round*/
    width: 46%; /* Full-width */
    height: 25px; /* Specified height */
    background: #dddddd; /* Grey background */
    outline: none; /* Remove outline */
    opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
    cursor: grab;
}


.slider:hover {
    opacity: 1; /* Fully shown on mouse-over */
}
  

#buttonContainer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-top: 40px;
    gap: 10%
}

.button{
    font-family: 'gasstationcat';
    margin: 25px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    transition-duration: 0.4s;
    border-radius: 8px;
}

#links {
    padding: 16px 32px;
    background-color: rgb(228, 226, 226); 
    color: black; 
    border: 2px solid #04AA6D;
  }
  
#links:hover {
    background-color: #04AA6D;
    color: white;
    cursor: pointer;
}

#linkIcon{
    width: 10%;
    height: auto;
}

#about {
    padding: 16px 27px;
    background-color: rgb(228, 226, 226); 
    color: black; 
    border: 2px solid #008CBA;
}
  
#about:hover {
    background-color: #008CBA;
    color: white;
    cursor: pointer;
}

#linksContainer{
    display: flex;
    gap: 5%;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 0%;
    position: relative;
    left: -100%;
    animation-fill-mode: forwards;
}

#aboutContainer{
    width: 100%;
    height: 0%;
    justify-content: center;
    position: relative;
    left: -100%;
    animation-fill-mode: forwards;
}

#videoContainer{
    display: flex;
    column-gap: 10%;
    row-gap: 5%;
    justify-content: center;
    height: 400px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.video{
    width: 500px;
    height: 300px
}

