/* CSS Document */

body{
	background-image: url('img/bg.png');
  	background-repeat: repeat;
	/*background-color: #3e3e3e;*/
	font-family:Tahoma, Geneva, sans-serif;
	overflow-x: hidden; /* Prevent horizontal scrollbar */
	}

/* header */

#banner {
    color: #ffffff;
    width: 500px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

#banner h1 {
    margin: 0;
    padding: 5px;
    font-size: 45px;
    text-shadow: 4px 4px 6px #000000;
}

#banner img {
    width: 50px;
	padding: 0px 10px 0px 10px;
}



/* Carouseel Stuff */
.carousel-container {
    width: 500px;
    position: relative;      
    display: flex;
	align-items: center;
    overflow-x: auto;
    gap: 10px; /* space between boxes */
    padding: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; /* smooth scroll on iOS */

    }

.carousel-box {
    padding: 20px; 
    flex: 0 0 auto; /* prevents shrinking and makes them stay side-by-side */
    scroll-snap-align: start;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	gap: 10px;
	padding: 10px;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
    }

.carousel-box::-webkit-scrollbar {
	display: none;
	}

.carousel-box.active {
      display: block;
    }


/* end of carousel*/

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 10px;
  font-size: 20px;
  cursor: pointer;
  z-index: 1;
}

.scroll-btn.left {
  left: 0;
}

.scroll-btn.right {
  right: 0;
}

/* body home page */

.bodylinks{
	width: 500px;
	height: 500px;
    position: relative;      
    display: flex;
	align-items: center;
    flex-direction: column;
	padding: 20px;
	margin: 0 auto; /* This will center the div horizontally */
	}

.linkbubble{
	width: 450px;
	border: 5px;
	border-color: #ffffff;
	border-radius: 20px;
	padding: 10px;
	margin: auto;
	box-shadow: 8px 8px;
	flex: 0 0 auto;
  	scroll-snap-align: start;
	}

.bodylinks h1{
	padding: 10px;
	margin: 10px;
	color: #ffffff;
	font-size: 20px;
	background: repeating-linear-gradient(160deg, #323232 0%, #323232 60%, #000000 80%, #000000 100%);
	border-radius: 10px;
	}

.bodylinks li a{ 
	color: white;
	text-decoration:none;
	font-size:16px;
	text-shadow: -2px 0 black, 0 2px black, 2px 0 black, 0 -2px black;
	padding: 4px 8px 4px 8px;
	}
	
.bodylinks li a:hover {
    color: black;
	text-shadow: -2px 0 white, 0 2px white, 2px 0 white, 0 -2px white;
	}
	
.bodylinks li {
	padding: 5px;
	list-style: none;
	font-weight: bold;
	}

#ajsocial{
	background: repeating-linear-gradient(160deg, #00bfff 0%, #00bfff 40%, #0098cc 60%, #0098cc 100%);
}
#ajsocial li a{
	border-radius: 10px;
	background-color: #007299;
}

#ajsec{
	background: repeating-linear-gradient(160deg, #eaecee 0%, #eaecee 40%, #abb2b9 60%, #abb2b9 100%);
}
#ajsec li a{
	border-radius: 10px;
	background-color: #8a8a8a;
}

#randomsec{
	background: repeating-linear-gradient(160deg, #b02eff 0%, #b02eff 40%, #7e3aa7 60%, #7e3aa7 100%);
}
#randomsec li a{
	border-radius: 10px;
	background-color: #5e3e71;
}


#podcastsec{	
	background: repeating-linear-gradient(160deg, #FFA500 0%, #FFA500 40%, #cc8400 60%, #cc8400 100%);
}
#podcastsec li a{
	border-radius: 10px;
	background-color: #996300;	
}

#ytsec{
	background: repeating-linear-gradient(160deg, #ff0000 0%, #ff0000 40%, #a92626 60%, #a92626 100%);
}
#ytsec li a{
	border-radius: 10px;
	background-color: #530c0c;
}


#favsec{
	background: repeating-linear-gradient(160deg, #0FFF50 0%, #0FFF50 40%, #32CD32 60%, #32CD32 100%);
}
#favsec li a{
	border-radius: 10px;
	background-color: #4fb64f;
}


#unfocusedsec{
	background: repeating-linear-gradient(160deg, #E500CE 0%, #E500CE 40%, #b700a4 60%, #b700a4 100%);
}
#unfocusedsec li a{
	border-radius: 10px;
	background-color: #89007b;
}


#c28sec{
	background: repeating-linear-gradient(160deg, #1C008E 0%, #1C008E 40%, #160071 60%, #160071 100%);
}
#c28sec li a{
	border-radius: 10px;
	background-color: #100055;
}

h1 {
	color: white;
    text-align: center;
    padding: 10px 5px;
    text-decoration: none;
}

/* footer part */	
#footer{

	}
	
#foothead{
	color: #ffffff;
    display: flex;
    justify-content: center; /* horizontal center */
    align-items: center;     /* vertical center */
    height: 80px;           /* required to see vertical centering */
	}

/* For Smart Screens */
@media (max-width: 768px) {
    #banner {
    width: 400px;
}
    #banner h1 {
    font-size: 45px;
}
  .bodylinks{
	width: 400px;
	}

.linkbubble{
	width: 400px;
	padding: 5px;
	}

.bodylinks h1{
	font-size: 20px;
	padding: 5px;
	margin: 5px;
	}

.bodylinks li a{ 
	font-size:16px;
	}
}

@media (max-width: 480px) {
    #banner {
    width: 380px;
}
    #banner h1 {
    font-size: 45px;
}
    .bodylinks{
	width: 380px;

	}

.linkbubble{
	width: 380px;
	padding: 5px;
	}

.bodylinks h1{
	font-size: 16px;
	padding: 5px;
	margin: 5px;
	}

.bodylinks li a{ 
	font-size:14px;
	}
}    

/* Hide buttons on small/touch screens */
@media (max-width: 768px) {
  .scroll-btn {
    display: none;
  }
}