@charset "utf-8"; /*Document Starts*/

body{ /*This sets the styling for the body*/
	padding:0;
	margin:0;
	font-family:Georgia, "Helvetica Neue", Helvetica, Arial, sans-serif;
    min-width:100%;
	min-height:100vh;
    background-position: center; 
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("images/bg.jpg");
    top:0;
    position:fixed;
}

html{ 
    min-width:100%;
    min-height:100vh;
}

#wrapper{ 
	width:100%;
	height:100%;
}

/* 1. Outer container spans the top but aligns its contents to the right */
#navbar {
    width: 100% !important;
    max-width: 100vw !important;
    left: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    display: flex !important;
    justify-content: flex-end !important; /* Pushes the inner menu box to the far right */
    padding-right: 1vw !important;        /* Inset padding so it doesn't touch the very edge of the glass */
    background-color:#6f69a02c;
}

/* 2. Middle wrapper aligns container elements right */
#navbar-box {
    width: auto !important; /* Collapses the container width to fit just the links */
    margin: 0 !important;
    display: flex !important;
    justify-content: flex-end !important;
}

/* 3. The link row structure packed tightly to the right side */
#navbar-inner {
    display: flex;
    justify-content: flex-end; /* Links sit side-by-side starting from the right */
    align-items: center;
    gap: 1vw;                  /* Clean, fixed breathing room between your links */
    box-sizing: border-box;
    padding: 0vh 0;
}

/* Update this selector in your style.css */
#navbar-inner .nav-link {
    text-decoration: none;
    text-align: center;
    padding-bottom: 2px; /* Shrunk from 6px/8px to float the line closer to the text */
    border-bottom: 3px solid transparent;
}

/* 5. Smaller Font Rules */
#navbar-inner h2 {
    margin: 0;
    white-space: nowrap;
    font-size: 1.2vw; /* Shrunk down from 1.5vw for a more compact look */
}

/* Active underline colors */
#navbar-inner .nav-link.active {
    border-bottom: 3px solid #A9A0EF;
}
#navbar-inner .nav-link.active h2 {
    color: #A9A0EF;
}

#navbar-inner-left{ 
    height: 3vw;
    width: 12vw;
    float: left;
}

#logo-box{ 
    height: 1.5vw;
    width: 12vw;
    margin-top: 0.6vw;
    background-position: center; 
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("images/logo.png");
}

#banner-message{ 
    height: 3vh;
    width: 100%;
    margin-top: 1.5vw;
    margin-right: 10vw;
    float: right;
    position: absolute;
    color: white;
    flex-direction: column;
    text-align: right;
}

#content-box{ 
    min-height: 31vh;
    width: 50vw;
    margin-top: 23vh;
    margin-left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    border-top-right-radius: 0.80vw;
    border-bottom-right-radius: 0.80vw;
    padding-top: 0.5vh;
    padding-bottom: 0.5vh;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 15px 30px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
    flex-direction: column;
}

#content-box-2{ 
    height: 24vw;
    width: 50vw;
    margin-top: 22vh;
    margin-left: 0;
    margin-right: -11.5vw;
    float: right;
    background-color: rgba(0, 0, 0, 0.7);
    border-top-left-radius: 0.80vw;
    border-bottom-left-radius: 0.80vw;
    padding-top: 0.5vh;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 15px 30px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
}

#content-box-3 { 
    height:61vh;
    width: 65vw;
    margin-top: 20vh;
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 0.80vw;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 15px 30px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
    position: relative;
    
    /* Variables */
    --sb-track-color: #252525;
    --sb-thumb-color: #c7c7c7;

    overflow: hidden !important; 
    box-sizing: border-box; 
    padding: 20px 0 20px 20px; 
}

.scroll-content {
    height: calc(98% - 10px); 
    width: calc(100% - 0.4vw); /* Keeps your left inset gap */
    overflow-x: hidden;
    padding-right: 15px; 
    box-sizing: border-box;
    border-radius: 0.80vw;
    margin-top: 0.5vw;

    /* 1. THE MODERN FIX: Native, perfectly tracking scrolling */
    overflow-y: auto !important;

    /* 2. FORCE NATIVE PILL ROUNDING: 
       By choosing 'thin', modern browsers natively render the bar as a 
       sleek, perfectly rounded pill-shaped capsule. */
    scrollbar-width: thin !important; 

    /* 3. SET COLORS SAFELY: 
       Syntax is: scrollbar-color: [thumb] [track]; */
    scrollbar-color: var(--sb-thumb-color) var(--sb-track-color) !important;
}

/* 4. TOTAL REMOVAL OF OLD WEBKIT INTERFERENCE:
      We strip out all width, border, and background overrides from the 
      webkit engine so it doesn't fight the native system scroller. */
.scroll-content::-webkit-scrollbar {
    width: auto;
}
.scroll-content::-webkit-scrollbar-track,
.scroll-content::-webkit-scrollbar-thumb {
    background: none;
    border: none;
    box-shadow: none;
}

@supports not selector(::-webkit-scrollbar) {
  #content-box-3 {
      scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
  }
}

#research-box{ 
    padding: 1vw;
    width: 60vw;
    margin-top: 0.5vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.5vw;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 0.80vw;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 15px 30px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
}

#tutor-image{ 
    height: 14vh;
    width: 14vh;
    min-height: 6vh;
    min-width: 3vw;
    margin-top: 0.5vw;
    margin-left: 1vw;
    background-position: center; 
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("images/tutor.png");
    border-radius: 100vh;
    box-shadow: rgba(104, 104, 104, 0.25) 0px 10px 15px -6px inset, rgba(48, 48, 48, 0.3) 0px 7px 18px -18px inset;
}

#mykola-image{ 
    height: 14vh;
    width: 14vh;
    margin-top: 0.5vh;
    margin-left: 0.5vw;
    background-position: center; 
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("images/Mykola.jpg");
    border-radius: 10vw;
    box-shadow: rgba(104, 104, 104, 0.25) 0px 10px 15px -6px inset, rgba(48, 48, 48, 0.3) 0px 7px 18px -18px inset;
}

#moses-image{ 
    height: 14vh;
    width: 14vh;
    margin-top: 0.5vh;
    margin-left: 0.5vw;
    background-position: center; 
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("images/moses.png");
    border-radius: 10vw;
    box-shadow: rgba(104, 104, 104, 0.25) 0px 10px 15px -6px inset, rgba(48, 48, 48, 0.3) 0px 7px 18px -18px inset;
}

#line{
    height: 0.1vh;
    width: 50vw;
    margin-top: 0.5vh;
    background-color: rgba(255, 255, 255, 0.3);
}

#reviews-banner{ 
    height: 8vw;
    width: 100%;
    margin-top: 10vh;
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(0, 0, 0, 0.7);
    position: fixed;
}

#review-1{
    height: 15.1vh;
    width: 19.8vw;
    float: left;
}

#stars{ 
    height: 3vh;
    width: 12vw;
    margin: auto;
    background-position: center; 
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("images/stars.png");
}

#content-box-inner-1{ 
    height: 79.5vh;
    width: 91.5vw;
    float :left;
    margin-bottom: 0.25vh;
    background-color: rgba(253, 253, 253, 0.2);
    border-radius: 0.64vw;
    box-shadow: rgba(77, 77, 77, 0.25) 0px 5px 10px -12px inset, rgba(0, 0, 0, 0.3) 0px 4px 10px -8px inset;
}

#content-box-tracklist-item-1st{ 
    padding-top: 0.5vh;
    height: 3vh;
    width: 69vw;
    margin-left: -0.5vw;
    border-radius: 0.4vw, 0;
    border: solid 1px #ffffff00;
    border-bottom: hidden;
    position: relative;
    cursor: pointer;

}

#content-box-tracklist{ 
    height: 38.5vh;
    width: 69vw;
    margin-bottom: 0.28vh;
    margin-left: 1vw;
    margin-right: 0.25vw;
    border-radius: 0.64vw;
}

#content-box-tracklist-date-1st{ 
    height: 38.5vh;
    width: 5vw;
    margin-top: -2.8vw;
    margin-left: 40vw;
    border-radius: 0.64vw;
}

#content-box-tracklist-date{ 
    height: 38.5vh;
    width: 5vw;
    margin-top: -3.4vw;
    margin-left: 40vw;
    border-radius: 0.64vw;
}

#content-box-tracklist-time{ 
    height: 38.5vh;
    width: 5vw;
    margin-top: -2.8vw;
    margin-left: 25.4vw;
    border-radius: 0.64vw;
}

#content-box-tracklist-item-1st:after{ 
    content:"";
    background: -webkit-linear-gradient(left, rgba(124, 214, 236, 0.3) 0%, rgb(236, 186, 205, 0.3) 100%);
    height:2px;
    width: 100%;
    position: absolute;
    bottom: 0
}

#content-box-tracklist-item{ 
    height: 3vh;
    width: 69vw;
    margin-left: -0.5vw;
    border-radius: 0.4vw, 0;
    display: block;
    border: solid 1px #ffffff00;
    border-bottom: none;
    position: relative;
}

#content-box-tracklist-item:after{ 
    content:"";
    background: -webkit-linear-gradient(left, rgba(124, 214, 236, 0.3) 0%, rgb(236, 186, 205, 0.3) 100%);
    display: block;
    height:2px;
    width: 100%;
    position: absolute;
    bottom: 0
}

.content-box-track-cover-playing{ 
    height: 100%;
    width: 100%;
    background-color: #0000007e;
    border-radius: 0.2vw;
}

#content-box-track-cover-listed-1{ 
    height: 2.2vh;
    width: 1.2vw;
    margin-left: 1vw;
    margin-right: 0.4vw;
    margin-top: -2.2vh;
    background-position: center; 
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("images/Daft\ Punk\ Mix\ Cover.png");
    border-radius: 0.2vw;
    box-shadow: rgba(104, 104, 104, 0.25) 0px 10px 15px -6px inset, rgba(48, 48, 48, 0.3) 0px 7px 18px -18px inset;
}

#content-box-track-cover-listed-2{ 
    height: 2.2vh;
    width: 1.2vw;
    margin-left: 1.1vw;
    margin-right: 0.4vw;
    margin-top: -2.2vh;
    background-position: center; 
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("images/One\ Last\ Time\ Cover.png");
    border-radius: 0.2vw;
    box-shadow: rgba(104, 104, 104, 0.25) 0px 10px 15px -6px inset, rgba(48, 48, 48, 0.3) 0px 7px 18px -18px inset;
}

#content-box-track-cover-listed-3{ 
    height: 2.2vh;
    width: 1.2vw;
    margin-left: 1.1vw;
    margin-top: -2.2vh;
    background-position: center; 
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("images/Senna\ Cover.png");
    border-radius: 0.2vw;
    box-shadow: rgba(104, 104, 104, 0.25) 0px 10px 15px -6px inset, rgba(48, 48, 48, 0.3) 0px 7px 18px -18px inset;
}

#content-box-track-cover-listed-4{ 
    height: 2.2vh;
    width: 1.2vw;
    margin-left: 1.1vw;
    margin-top: -2.2vh;
    background-position: center; 
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("images/Album.png");
    border-radius: 0.2vw;
    box-shadow: rgba(104, 104, 104, 0.25) 0px 10px 15px -6px inset, rgba(48, 48, 48, 0.3) 0px 7px 18px -18px inset;
}

#content-box-track-cover-listed-5{ 
    height: 2.2vh;
    width: 1.2vw;
    margin-left: 1.1vw;
    margin-top: -2.2vh;
    background-position: center; 
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("images/Encore\ du\ Fantôme!\ Cover.png");
    border-radius: 0.2vw;
    box-shadow: rgba(104, 104, 104, 0.25) 0px 10px 15px -6px inset, rgba(48, 48, 48, 0.3) 0px 7px 18px -18px inset;
}

#content-box-track-cover-listed-6{ 
    height: 2.2vh;
    width: 1.2vw;
    margin-left: 1.1vw;
    margin-top: -2.2vh;
    background-position: center; 
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("images/Yebba.png");
    border-radius: 0.2vw;
    box-shadow: rgba(104, 104, 104, 0.25) 0px 10px 15px -6px inset, rgba(48, 48, 48, 0.3) 0px 7px 18px -18px inset;
}

#content-box-track-cover-listed-7{ 
    height: 2.2vh;
    width: 1.2vw;
    margin-left: 1.1vw;
    margin-top: -2.2vh;
    background-position: center; 
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("images/3rd\ Gear\ Album\ Cover.png");
    border-radius: 0.2vw;
    box-shadow: rgba(104, 104, 104, 0.25) 0px 10px 15px -6px inset, rgba(48, 48, 48, 0.3) 0px 7px 18px -18px inset;
}

#content-box-track-cover-listed-8{ 
    height: 2.2vh;
    width: 1.2vw;
    margin-left: 1.1vw;
    margin-top: -2.2vh;
    background-position: center; 
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("images/a\ cat.png");
    border-radius: 0.2vw;
    box-shadow: rgba(104, 104, 104, 0.25) 0px 10px 15px -6px inset, rgba(48, 48, 48, 0.3) 0px 7px 18px -18px inset;
}

#content-box-inner-2{ 
    height: 14vh;
    width: 68vw;
    margin-left: 0.5vw;
    margin-right: 0.25vw;
    margin-top: 0.5vh;
    border-radius: 0.46vw;
    background-color: rgba(249, 249, 249, 0.1);
    box-shadow: rgba(104, 104, 104, 0.25) 0px 10px 15px -6px inset, rgba(48, 48, 48, 0.3) 0px 7px 18px -18px inset;
    padding: 0.5vw;
}

#content-box-inner-2-cover-1st{ 
    height: 14.5vh;
    width: 7.5vw;
    margin-right: 0.5vw;
    border-radius: 0.46vw;
    background-color: rgba(49, 49, 49, 0.1);
    box-shadow: rgba(104, 104, 104, 0.25) 0px 10px 15px -6px inset, rgba(48, 48, 48, 0.3) 0px 7px 18px -18px inset;
}

#content-box-inner-2-cover{ 
    height: 14.5vh;
    width: 7.5vw;
    margin-right: 0.5vw;
    margin-left: 8vw;
    border-radius: 0.46vw;
    background-color: rgba(49, 49, 49, 0.1);
    box-shadow: rgba(104, 104, 104, 0.25) 0px 10px 15px -6px inset, rgba(48, 48, 48, 0.3) 0px 7px 18px -18px inset;
    float: left;
}

#content-box-title-spacer{ 
    height: 8vh;
    width: 19.5vw;
    margin-left: 2vw;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 5px 10px -12px inset, rgba(0, 0, 0, 0.3) 0px 4px 10px -8px inset;
}
#content-box-title{ 
    height: 5vh;
    width: 27vw;
    margin-left: 2vw;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 2vw;
    box-shadow: rgba(104, 104, 104, 0.25) 0px 10px 15px -6px inset, rgba(48, 48, 48, 0.3) 0px 7px 18px -18px inset;
    cursor: default;
}


#content-box-tracks{ 
    height: 58.2vh;
    width: 70vw;
    margin-top: 2vw;
    margin-left: 2vw;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 0.8vw;
    box-shadow: rgba(104, 104, 104, 0.25) 0px 10px 15px -6px inset, rgba(48, 48, 48, 0.3) 0px 7px 18px -18px inset;
}

#content-box-track-details{ 
    height: 66.2vh;
    width: 16vw;
    margin-top: -36.2vw;
    margin-right: 2vw;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 0.8vw;
    box-shadow: rgba(104, 104, 104, 0.25) 0px 10px 15px -6px inset, rgba(48, 48, 48, 0.3) 0px 7px 18px -18px inset;
    float: right;
    cursor: default;
}

#content-box-track-cover{ 
    height: 28vh;
    width: 15vw;
    margin-top: 0.8vh;
    margin-left: 0.5vw;
    background-position: center; 
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("images/One\ Last\ Time\ Cover.png");
    border-radius: 0.6vw;
    box-shadow: rgba(104, 104, 104, 0.25) 0px 10px 15px -6px inset, rgba(48, 48, 48, 0.3) 0px 7px 18px -18px inset;
}

#content-box-track-info{ 
    height: 28vh;
    width: 15vw;
    margin-top: 8.5vh;
    margin-left: 0.5vw;
    background-color: rgba(253, 253, 253, 0.2);
    border-radius: 0.6vw;
    box-shadow: rgba(104, 104, 104, 0.25) 0px 10px 15px -6px inset, rgba(48, 48, 48, 0.3) 0px 7px 18px -18px inset;
    text-align: center;
}

#player-box{ 
    height: 3.5vh;
    width: 100%;
    padding-top: 0.5vh;
    margin-bottom: -0.1vh;
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(141, 148, 236, 0.15);
    position: absolute;
    bottom: 0;
}

#player-box-inner{ 
    height: 3.5vh;
    width: 91.5vw;
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 0.60vw 0.60vw 0 0;
    box-shadow: rgba(104, 104, 104, 0.25) 0px 10px 15px -6px inset, rgba(48, 48, 48, 0.3) 0px 7px 18px -18px inset;
}

input[type="range"] {
  /* removing default appearance */
  -webkit-appearance: none;
  appearance: none; 
  /* creating a custom design */
  width: 100%;
  cursor: pointer;
  outline: none;
  /*  slider progress trick  */
  overflow: hidden;
  border-radius: 16px;
  padding: 0.4vw;
}

/* Track: webkit browsers */
input[type="range"]::-webkit-slider-runnable-track {
  height: 10px;
  background: #ffffff4d;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 5px 10px -12px inset, rgba(0, 0, 0, 0.3) 0px 4px 10px -8px inset;
  border-radius: 16px;
}


/* Thumb: webkit */
input[type="range"]::-webkit-slider-thumb {
  /* removing default appearance */
  -webkit-appearance: none;
  appearance: none; 
  /* creating a custom design */
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  border: 3px solid rgba(49, 41, 44, 0.651);
  /*  slider progress trick  */
  box-shadow: -45.5vw 0 0 45.25vw rgba(118, 140, 197, 0.9);
}

.range {
  display: flex;
  align-items: center;
  max-width: 88vw;
  height: 1.8vw;
  width: 90%;
  padding: 0px 45px;
  margin-left: 3vw;
}

#play-btn{
    height: 1.5vh;
    width: 1vw;
    margin: 0.9vh 0 0 89.9vw;
    position: absolute;
    background-position: center; 
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("images/next.png");
    border-radius: 0.2vw;
}

#next-btn{
    height: 1.5vh;
    width: 1vw;
    margin: 0.9vh 0 0 0.8vw;
    position: absolute;
    background-position: center; 
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("images/play.png");
    border-radius: 0.2vw;
}

.glow-on-hover {
    width: 220px;
    height: 50px;
    border: none;
    outline: none;
    color: #fff;
    cursor: pointer;
    position: relative;
    border-radius: 30vw;
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #fff, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -1px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 30vw;
}

.glow-on-hover:active {

}

.glow-on-hover:active:after {
    background: transparent;
}

.glow-on-hover:hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 30vw;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

#current-time{
    height: 1.5vh;
    width: 2.2vw;
    margin: 0.8vh 0 0 2vw;
    position: absolute;
    border-radius: 0.2vw;
}

#track-time{
    height: 1.5vh;
    width: 2.2vw;
    margin: 0.8vh 0 0 87.2vw;
    position: absolute;
    border-radius: 0.2vw;
}

.kulim-park-extralight {
    font-family: "Kulim Park", sans-serif;
    font-weight: 200;
    font-style: normal;
  }

.elms-sans {
  font-family: "Elms Sans", sans-serif;
  font-optical-sizing: auto;
  font-size: large;
  font-weight: 200;
  font-style: italic;
}

.button {
  background-color: #A9A0EF;
  border: none;
  color: white;
  width: 8vw;
  height: 2vw;
  margin-top: 1.5vh;
  text-decoration: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  transition-duration: 0.4s;
  vertical-align:middle
}

.button:hover {
  background-color: #6f69a0;  
  color: white;
}

.input-container {
  display: flex;
  flex-direction: column;
  font-family: "Kulim Park", sans-serif;
  gap: 8px;
  width: 100%;
  max-width: 61vw;
  margin-left: 1vw;
}

.input-container label {
  font-size: 0.9rem;
  color: #ffffff;
  font-family: "Kulim Park", sans-serif;
}

.input-container textarea {
  width: 100%;
  padding: 12px 12px;
  font-size: 0.9vw;
  color: #ffffff;
  font-family: "Kulim Park", sans-serif;
  
  /* Your custom styles */
  background-color: #a5a5a520;
  border-radius: 0.3vw;
  
  /* Key properties for line-breaking and behavior */
  white-space: pre-wrap;      /* Ensures text wraps to the next line */
  word-wrap: break-word;      /* Breaks long words if they hit the edge */
  resize: vertical;           /* Allows users to scale height, but not width */
  
  /* Clean border and smooth focus transition */

}

/* Enhanced focus state */
.input-container textarea:focus {
  border-color: #a5a5a580;
  box-shadow: 0 0 0 3px #a5a5a515;
}

input[type="text"]
{
    font-family: "Kulim Park", sans-serif;
    padding: 0.7vw;
    font-weight: 180;
    font-size: 0.9vw;
    color: #ffffff;
    
}

h1{
    font-family: "Elms Sans", sans-serif;
    font-style: italic;
    margin: auto;
    padding: 0.7vw;
    font-weight: 100;
    font-size: 8vh;
    color: #A9A0EF;
}

h2{
    font-family: "Kulim Park", sans-serif;
    margin: auto;
    margin-top: -0.5vh;
    padding: 0.7vw;
    font-weight: 150;
    font-size: 1.3vw;
    color: #ffffff;
    align-items: left
}

h3{
    font-family: "Kulim Park", sans-serif;
    margin: auto;
    margin-top: 1vh;
    padding: 0.7vw;
    padding-left: 1vw;
    font-weight: 180;
    font-size: 1.7vh;
    color: #ffffff;
}

h4{
    font-family: "Kulim Park", sans-serif;
    margin: auto;
    padding-left: 0.7vw;
    padding-top: 0.6vh;
    font-weight: 180;
    font-size: 0.8vw;
    font-style: italic;
    color: #979797;
}

h5{
    font-family: "Kulim Park", sans-serif;;
    font-weight: 180;
    font-size: 1vw;
    margin-top: 0.3vh;
    margin-left: 0.5vw;
    color: #979797;
}

h6{
    font-family: "Kulim Park", sans-serif;;
    font-weight: 180;
    font-size: 1vw;
    margin-top: 0.3vh;
    margin-left: 0.4vw;
    color: #979797;
}

#h7{
    font-family: "Kulim Park", sans-serif;;
    font-weight: 180;
    font-size: 1vw;
    margin-top: -2.2vh;
    margin-left: 2.5vw;
    color: #979797;
}

.scroll-content::-webkit-scrollbar-button {
    display: none !important;
}

#translate-button {
    height: 3vh;
    width: 3vh;
    padding-left: 24vw;
    border: none;
    background-position: center; 
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("images/translate.png");
    cursor: pointer;
}

#translate-button:hover {
    background-image: url("images/instagram.png");

}

#insta-button {
    height: 2vw;
    width: 2vw;
    margin-top: 1.5vh;
    margin-right: 1vw;
    border: none;
    bottom: 0;
    float: right;
    border-radius: 10px;
    background-position: center; 
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("images/instagram2.png");
    cursor: pointer;
    transition: 0.3s;
}

#insta-button:hover {
    background-image: url("images/instagram.png");

}

.dropdown {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    transition: 0.3s;
}

.dropbtn {
    height: 3vh;
    width: 3vh;
    border: none;
    background-position: center; 
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("images/translate2.png");
    cursor: pointer;
    border-radius: 0.5vh;
    margin-left: 14vw;
    transition: 0.3s;
}

.dropbtn:hover {
    background-image: url("images/translate.png");

}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    margin-left: 12vw;
    min-width: 200px;
    min-height: 300px;
    background-color: #00000080;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 0.5vh;
    transition: 0.3s;
}

#button-container {
    width: 14vw; 
    height: 3vw; 
    right: 0; 
    margin-right: 1vw;
    margin-bottom: 0.7vw;
    position: absolute; 
    bottom: 0; 
    margin-top: 4vw;
}

.dropdown-content a {
    color: white;
    padding: 4px 4px;
    text-decoration: none;
    display: block;
    transition: 0.3s;
}

.dropdown-content a:hover {
    background-color: #42424234
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #a9a0ef10;
}

button {

    border: none;
    background:none;
    cursor: pointer;
    width: 100%;
}
