body {
  font-family: sans-serif;
  background-color: #181818;
  color: #ffffff;
  
  padding: 16px;
  margin: 0;
}

h1, h2 {
  text-align: center;
}

h1, h2, h3, p {
  margin: 0;
  font-weight: normal;
}

rt {
  color: #8888ff;
}

button, select, input {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  
  background-color: #303030;
  border: 1px solid #404040;
  border-radius: 4px;
  
  padding: 8px;
}

button:hover {
  background-color: #404040;
  border: 1px solid #505050;
}

.query-input {
  flex: 1;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 16px;
  padding: 16px;
  
  background-color: #202020;
  border: 1px solid #303030;
  border-radius: 4px;
}

#queryTable {
  display: grid;
  /* 2 columns 3 rows */
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 8px;
}

.grid-item {
  background-color: #282828;
  padding: 8px;
  border: 1px solid #383838;
  
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.query-label {
  margin: 0 16px 0 8px;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

#songsContainer {
  width: 100%;
  display: flex;
  
  flex-direction: row;
  align-content: flex-start;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  
  gap: 8px;
}

.song-item {
  background-color: #282828;
  padding: 8px;
  border: 1px solid #383838;
  
  flex: 1;
  
  min-width: 200px;
  min-height: 100px;
  
  transition: 0.1s;
}

.song-item:hover {
  box-shadow: 0 0 10px 0px rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

.title {
  font-weight: bold;
}

.subtitle {
  font-style: italic;
  color: #888888;
}

#lyricsContainer {
  line-height: 2;
  font-size: 24px;
  
  text-align: center;
}

.changeLanguage {
  text-align: center;
  color: #888888;
}

a {
  color: inherit;
  text-decoration: none;
}