* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Main Container Styling */
.mainContainer {
  /* background-color: grey; */
  width: 98%;
  /* height: 98vh; */
  padding: 10px 15px;

  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

/* Heading Container Styling */
.headingContainer {
  /* background-color: pink; */
  width: 100%;
  height: 60px;
}

/* Select Container Styling */
.selectContainer {
  /* background-color: aqua; */
  width: 100%;
  height: 60px;

  display: flex;
  justify-content: center;
  align-items: center;

  margin-bottom: 20px;
}

select {
  /* background-color: antiquewhite; */
  width: 250px;
  height: 35px;
  font-size: 16px;
  padding: 2px 0px 0px 8px;
  border-radius: 7px;
}

/* Lyrics Container Styling */
.lyricsContainer {
  /* background-color: lightsalmon; */
  width: 100%;
  /* height: 70%; */

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.songHeadingContainer {
  /* background-color: olive; */
  width: 450px;

  margin-bottom: 30px;

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

ul {
  /* background-color: red; */
  width: 450px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
