@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&display=swap');

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

body {
  background-color: #10161B;
  font-family: 'Roboto Mono', monospace;
  margin: 0;
}

button {
  cursor: pointer;
}

button:active {
  transform: scale(0.95);
}

input:focus,
button:focus {
  outline: none;
}

header {
  background-image: url('https://images.unsplash.com/photo-1533174072545-7a4b6ad7a6c3?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxzZWFyY2h8Mjh8fG11c2ljfGVufDB8fDB8fA%3D%3D&auto=format&fit=crop&w=500&q=60');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  position: relative;
}

header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, .4);
}

header * {
  z-index: 1;
}

header h1 {
  margin: 0 0 30px;
}

form {
  position: relative;
  width: 500px;
  max-width: 100%;
}


form input {
  border: 0;
  border-radius: 50px;
  font-size: 16px;
  padding: 15px 30px;
  width: 100%;
}

form button {
  position: absolute;
  top: 2px;
  right: 2px;
  background-color: #28B463;
  border: 0;
  border-radius: 50px;
  color: #fff;
  font-size: 16px;
  padding: 13px 30px;
}

.btn {
  background-color: #28B463;
  border: 0;
  border-radius: 10px;
  color: #fff;
  padding: 12px 10px;
}

.songs-container {
  list-style-type: none;
  padding: 0;
  margin: 30px auto;
  max-width: 100%;
  width: 700px;
  background-color: #10161B;
}

.song {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 10px 0;
}

.prev-and-next-container h2 {
  font-weight: 300;
}

.prev-and-next-container {
  display: flex;
  justify-content: center;
}

.prev-and-next-container button {
  transform: scale(1.3);
  margin: 15px;
}

.warning-message {
  color: #EA2234;
  text-align: center;
}

.song-artist {
  color: white;
  opacity: .4;
  max-width: 400px;
}

.lyrics-container {
  color: white;
  opacity: .4;
}

.lyrics {
  margin-top: 20px;
  line-height: 1.5;
}