body {
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1 {
  margin-top: 40px;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
  background-color: #f2f2f2;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
}

label {
  font-weight: bold;
  margin-bottom: 10px;
}

textarea {
  width: 100%;
  height: 100px;
  font-size: 18px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  resize: none;
}

#output-hash {
  font-size: 18px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  width: 100%;
  text-align: center;
  word-wrap: break-word;
}

button {
  background-color: #4CAF50;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

#status-message {
  margin-top: 20px;
  font-size: 18px;
}

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

.lyrics {
      width: 50%;
  text-align: center;
}

.lyrics h2 {
  margin-bottom: 20px;
}

.media {
      width: 50%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 1em;
}

img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

audio {
      width: 100%;
  margin-bottom: 1em;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: #000;
  height: 50px;
  font-size: 8px;
}
