@keyframes fadeInUp {
	from {
	  transform: translateY(50px);
	  opacity: 0;
	}
	to {
	  transform: translateY(0);
	  opacity: 1;
	}
  }
  .fade-in-up {
	animation: 2s both fadeInUp;
  }

.App {
	font-family: sans-serif;
	text-align: center;
  }
  
  .fade-in-section {
	opacity: 0;
	transform: translateY(20vh);
	visibility: hidden;
	transition: opacity 1200ms ease-out, transform 600ms ease-out, visibility 1200ms ease-out;
	will-change: opacity, transform, visibility;
  }
  .fade-in-section.is-visible {
	opacity: 1;
	transform: none;
	visibility: visible;
  }

  body { 
  	background: radial-gradient(farthest-corner at 40px 40px,#1b1d25 30%, #03197cec 70%);
	background-repeat: no-repeat;
	background-attachment: fixed;
	margin: 0;
  	padding: 0;
	overflow: hidden; /* Prevent scrolling until splash screen is clicked */
}
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(images/giphy.gif); /* You can customize the background color */
	background-repeat: no-repeat;
	background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
}
.splash-screen h1{
	font-size: 100px;
	text-shadow: 0 0 5px rgb(73, 111, 247), 0 0 10px rgb(73, 111, 247), 0 0 15px rgb(73, 111, 247);
	font-family:'Kanit', sans-serif;
	text-decoration: underline;
}
.splash-screen h2{
	font-size: 50px;
	text-shadow: 0 0 5px rgb(73, 111, 247), 0 0 10px rgb(73, 111, 247), 0 0 15px rgb(73, 111, 247);
}
.main-content {
    display: none; /* Hide main content initially */
}
.top-container {
    display: flex;
    justify-content: center; /* Center the items horizontally */
    align-items: center; /* Center the items vertically */
}

.Music {
    border: 1px solid rgb(73, 111, 247);
    width: 300px;
    color: white;
    border-radius: 8px;
    text-align: center;
    margin: 20px;
    padding: 10px;
    box-shadow: 0 0 5px rgb(73, 111, 247), 0 0 10px rgb(73, 111, 247), 0 0 15px rgb(73, 111, 247);
    background: linear-gradient(to right, #1e2a78, #9333ea); /* Add a gradient background */
}

.Music-header {
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background for the header */
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.Music-header h1 {
    margin: 0;
}

.Music-player {
    display: none; /* Set the alpha channel to 0 for a transparent background */
    padding: 15px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.Music audio {
    width: 100%;
    margin-top: 10px;
    background-color: rgba(0, 0, 0, 0); /* Set the alpha channel to 0 for a transparent background */
    border: none;
    outline: none;
}
/* Style the audio controls */
.Music audio::-webkit-media-controls-panel {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
}

.Music audio::-webkit-media-controls-play-button {
    color: white;
}

.Music audio::-webkit-media-controls-volume-slider {
    color: white;
}

/* Add hover effect */
.Music:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
}
.Music-header button{
	border: #20272e;
	border-radius: 15px;
	font-size: larger;
	background-color: rgb(88, 101, 242);
	color: rgba(255, 255, 255, 0.534);
	display: inline-block;
	vertical-align: middle;
	transition: text-shadow 0.3s ease;
	padding: 10px 20px; 
	cursor:pointer;
}
.Music-header button:hover{
	background-color: rgb(114, 137, 218);
}
.MuteUnmuteButtons{
	margin-top: 10px;
}
.ForwardBackwardButtons{
	margin-top: 10px;
}
  .header {
	color: rgba(0, 0, 0, 0.568);
	padding: 20px;
	text-align: center;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.568) 90%, rgba(255, 255, 255, 0.568) 100%), url(images/Untitled\ design.png);
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
	height: 100px;
	position: relative;
	display: flex;
  flex-direction: column;
  justify-content: center;
}

  .header-content {
    display: flex;
    align-items: center;
	justify-content: space-between;
}
#active{
    text-shadow: 0 0 5px rgb(73, 111, 247), 0 0 10px rgb(73, 111, 247), 0 0 15px rgb(73, 111, 247);
}
.header h2{
	border: #20272e;
	border-radius: 15px;
	font-size: larger;
	background-color: rgba(88, 101, 242, 0);
	color: rgb(255, 255, 255);
	display: inline-block;
	vertical-align: middle;
	transition: text-shadow 0.3s ease;
	padding: 10px 20px; 
	margin-left: 20px;
	margin-top: 26px;
}
#login{
	border: #20272e;
	background-color: rgb(88, 101, 242);
	color: rgb(255, 255, 255);
	cursor: pointer;
}
#login:hover{
	background-color: rgb(114, 137, 218);
}
.header h2:hover{
	border: #20272e;
	background-color: rgb(88, 101, 242);
	color: rgb(255, 255, 255);
	cursor: pointer;
}
.header h1 {
	margin-right: auto;
  }
  

  .logo {
	margin-top: 26px;
    border-radius: 25px;
    padding: 20px;
    text-align: center;
}

.logo img {
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    box-shadow: 0 0 5px rgb(73, 111, 247), 0 0 10px rgb(73, 111, 247), 0 0 15px rgb(73, 111, 247);
    width: 400px;
}
.Start {
	color: aliceblue;
	text-align: center;
	padding-bottom: 20px;
  }
  
  .starter {
	width: 450px;
	font-size: 250%;
	margin: 30px auto 30px; 
  }
  
  .Start h2 {
	width: 500px;
	margin: 0 auto;
  }
  
  .Start button {
	border: #20272e;
	border-radius: 15px;
	font-size: larger;
	background-color: rgb(88, 101, 242);
	color: rgba(255, 255, 255, 0.534);
	display: inline-block;
	vertical-align: middle;
	transition: text-shadow 0.3s ease;
	padding: 10px 20px; 
	margin: 10px; 
  }
  
  
  .Start button:hover {
	background-color: rgb(114, 137, 218);
  }
  
  .div {
	margin-top: 1px;
	width: 100%;
	height: 2px;
	background-color: #000;
  }
  
.features{
	color: aliceblue;
	text-align: center; 
	padding-bottom: 20px; 
	margin-top: 3%;
}
.abovebox{
	text-align: center;
	color: rgb(255, 255, 255);
	margin-left: 50px;
	text-shadow: 0 0 5px rgb(73, 111, 247), 0 0 10px rgb(54, 108, 255), 0 0 15px rgb(35, 93, 255);
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1200px; 
}

.box {
    border: 1px solid rgb(73, 111, 247);
    width: calc(20% - 20px); 
    max-width: 300px;
    color: white;
    border-radius: 8px;
    text-align: center;
    margin: 20px;
    padding: 5px;
    box-shadow: 0 0 5px rgb(73, 111, 247), 0 0 10px rgb(73, 111, 247), 0 0 15px rgb(73, 111, 247);
}
#mm{
	margin-left: 545px;
	border: #20272e;
	border-radius: 15px;
	font-size: larger;
	background-color: rgb(88, 101, 242);
	color: rgba(255, 255, 255, 0.534);
	display: inline-block;
	vertical-align: middle;
	transition: text-shadow 0.3s ease;
	padding: 10px 20px; 
}
#mm:hover{
	background-color: rgb(114, 137, 218);
	margin-top: 20px;
}

#div2{
	margin-top: 30px;
}

.Creds-tit{
	color: white;
	text-align: center;
	font-size: 30px;
	font-family: 'Kanit', sans-serif;
}

.Creds-Container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around; /* Change to space-between or other values as needed */
    margin: 0 auto;
    max-width: 1200px;
    margin-top: 30px;
}

.Creds {
    display: flex;
    justify-content: center;
    align-items: center;
}

.Creds img {
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    box-shadow: 0 0 5px rgb(73, 111, 247), 0 0 10px rgb(73, 111, 247), 0 0 15px rgb(73, 111, 247);
    max-width: 400px;
    transition: transform .2s;;
}

.Creds img:hover {
	-ms-transform: scale(1.2); /* IE 9 */
  	-webkit-transform: scale(1.2); /* Safari 3-8 */
	transform: scale(1.1);
}
.Creds h1{
	color: white;
	text-align: center;
	font-family:'Kanit', sans-serif;
}
.Creds h2{
	color: rgb(255, 255, 255);
	text-align: center;
	font-family: 'Courier New', Courier, monospace;
	text-shadow: 0 0 5px rgb(73, 111, 247), 0 0 10px rgb(73, 111, 247), 0 0 15px rgb(73, 111, 247);
}


.footer {
    background-color: #222222;
    color: white;
    padding: 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}


@media (max-width: 800px) {
    .box {
        width: 100%;
        margin-right: auto;
        margin-left: auto;
    }

    .container .box {
        flex: 0 0 calc(100% - 20px);
        margin-right: auto;
        margin-left: auto;
    }

    .features h2 {
        width: 300px;
        margin: 0 auto;
    }

    .abovebox {
        text-align: center;
        color: rgb(0, 0, 0);
        text-shadow: 0 0 5px white, 0 0 10px white, 0 0 15px white;
        width: 300px;
        margin: 20px auto; /* Center the abovebox horizontally */
    }
	.top-container {
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center items horizontally */
    }

    .Music {
        width: 70%; /* Set the width to 70% for centering */
        margin: 10px 0; /* Add some space between stacked items */
    }

    .logo {
        margin-top: 10px; /* Adjust top margin for stacked items */
    }
    #mm {
        display: none;
    }

	body {
		background: radial-gradient(farthest-corner at 40px 40px,#1b1d25 30%, #03197c 70%);
		background-repeat: no-repeat;
		background-attachment: fixed;
		margin: 0;
		padding: 0;
	}
	
	.header-content {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	
	#active {
		text-shadow: 0 0 5px rgb(114, 137, 218), 0 0 10px rgb(114, 137, 218), 0 0 15px rgb(114, 137, 218);
	}

	
	.logo {
		margin-top: 50px;
		border-radius: 25px;
		padding: 20px;
		margin: 0 auto;
		display: block;
		text-align: center;
	}
	
	.logo img {
		border-radius: 25px;
		-webkit-border-radius: 25px;
		-moz-border-radius: 25px;
		box-shadow: 0 0 5px white, 0 0 10px white, 0 0 15px white;
		max-width: 250px;
	}
	
	.Start {
		color: aliceblue;
		text-align: center;
		padding-bottom: 20px;
		margin-top: 20px;
	}
	
	.starter {
		width: 100%;
		font-size: 200%;
		margin: 30px auto 30px;
	}
	
	.Start h2 {
		width: 100%;
		margin: 0 auto;
	}
	
	.Start button {
		border: #20272e;
		border-radius: 15px;
		font-size: larger;
		background-color: rgb(88, 101, 242);
		color: rgba(255, 255, 255, 0.534);
		display: inline-block;
		vertical-align: middle;
		transition: text-shadow 0.3s ease;
		padding: 10px 20px;
		margin: 10px auto;
	}
	
	.Start button:hover {
		background-color: rgb(114, 137, 218);
	}
	
	.div {
		width: 100%;
		height: 2px;
		background-color: #000;
	}
	
	.features {
		color: aliceblue;
		text-align: center;
		padding-bottom: 20px;
		margin-top: 3%;
	}
	
	.features h1 {
		text-decoration: underline;
	}
	
	.Creds img {
		border-radius: 25px;
		-webkit-border-radius: 25px;
		-moz-border-radius: 25px;
		box-shadow: 0 0 5px rgb(73, 111, 247), 0 0 10px rgb(73, 111, 247), 0 0 15px rgb(73, 111, 247);
		max-width: 400px;
		transition: transform .2s;;
	}
	
	.Creds img:hover {
		-ms-transform: scale(1); /* IE 9 */
		  -webkit-transform: scale(1.); /* Safari 3-8 */
		transform: scale(1);
	}
	
	.footer {
		background-color: #222222;
		color: white;
		padding: 20px;
		text-align: center;
	}
	
	.footer-content {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	
	.social-icons {
		display: flex;
		gap: 10px;
	}
	
	.social-icons a img {
		width: 30px;
		height: 30px;
		border-radius: 50%;
	}
	
}