@font-face {
  font-family: "RIT-MeeraNew";
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url('/fonts/RIT-MeeraNew.woff2') format('woff2');
}
html {
    scroll-behavior: smooth;
    min-height: 100%;
}
[lang = 'ml']
{
  font-family: 'RIT-MeeraNew';
  font-size: 1.6rem;
  line-height: 1.4;
}
body {
  color: #fafafa;
  background-color: #222222;
  font-family: -apple-system, BlinkMacSystemFont,
  "Segoe UI", system-ui, Roboto, Oxygen-Sans, Ubuntu, Cantarell,
  "Helvetica Neue", sans-serif;
  font-size: 1.10rem;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

main {
	display: block;
	max-width: 40rem;
	margin: 0 auto;
	padding: 0;

}
a {
  color: #fafafa;
}
a:hover {
  background: #c3ec81;
  text-decoration: none;
  color: #222222;
}
input {
  padding: 0.5rem;
  font-size: inherit;
  font-family: inherit;
  border:1px solid #898ea4;
  background-color: #212121;
  border-radius: 5px;
  color: #fafafa;
  box-shadow: none;
  -moz-appearance: none;
}
button {
  padding: 0.5rem 1rem;
  background-color: #aaccff;
  font-size: inherit;
  color: #212121;
  border: 1px solid #aaccff;
  border-radius: 5px;
}
#install {
  height: 50%;
  display: none;
  top: 1rem;
  right: 1rem;
}
.goToSong {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#SongNo {
  border-radius: 5px;
}
header {
	display: flex;
	justify-content: space-evenly;
	margin-bottom: 1rem;
  background-color: #1e1e1e;
  align-items: baseline;
}
header li {
	display:inline-block;
	list-style:none;
  margin: 0 0.5rem;
}
#nav_title {
	font-size:1.2em;
  margin-left: 2rem;
}
.songTitle {
  text-align: center;
  text-transform: capitalize;
}
.songTitleBox {
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  padding: 1rem 0.5rem;
  border-radius: 10px;
}
.meta {
  display:inline-flex;
  font-style: italic;
}
@media all and (max-width: 600px) {
header {
  display: flex;
  justify-content: space-between;
}
nav {
  background-color: #1e1e1e;
  overflow: hidden;
  position: fixed;
  bottom: 0;
  width: 100%;
  overflow-x: auto;
  border-top: 2px solid #aaccff;
}
nav ul {
  display: flex;
  justify-content: space-between;
  padding: 0;
}
nav li {
  font-size: 1rem;
}
nav li a {
  text-decoration: none;
  padding: 1rem 0.5rem;
}
main{
    padding:1.5rem;
}
}	
.song_list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style-type: none;
  padding: 0;
  
}
.song_list_item {
	display: flex;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 10px;
	margin: 5px;
	text-transform: capitalize;
	
}
.song_list_songno {
	display: flex;
}
footer {
  text-align:center;
}
h3 {
  text-align: center;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.6rem;
  margin-top: 3rem;
}

h3 {
  font-size: 2rem;
  margin-top: 3rem;
}

h4 {
  font-size: 1.44rem;
}

h5 {
  font-size: 1.15rem;
}

h6 {
  font-size: 0.96rem;
}

p {
  margin: 1.5rem 0;
}

/* Prevent long strings from overflowing container */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* Fix line height when title wraps */
h1,
h2,
h3 {
  line-height: 1.1;
}

/* Reduce header size on mobile */
@media only screen and (max-width: 720px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  h3 {
    font-size: 1.75rem;
  }

  h4 {
    font-size: 1.25rem;
  }
}
@media (display-mode: browser) {
  #install {
    display: block;
  }
}
@media (display-mode: standalone) {
  #install {
    display: none;
  }
  
}
@media (prefers-color-scheme: light) {
  body {
  background-color:#fafafa;
  color: #000000;
  }
  a {
    color: #000000;
  }
  header {
    background-color: #efefef;
  }
  nav {
    background-color: #efefef;
  }
  input {
    background-color: #efefef;
    color: #000000;
    border:1px solid #000000;  
  }
  .song_list_item {
    border: 1px solid #000000;
  }
}
#Wshare a{
  color: #25d366;
}