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

body {
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(to bottom right, #202127 50%, #1B1C24 50%);
  align-items: center;
  color: #fff;
  text-align: center;
  margin: 0;
}

/*! Main Area */

.cover-img {
  max-width: 100%;
  margin-top: 15px;
  width: 100px;
  height: 100px;
  margin-right: 10px;
  margin: 0;
}

.title-container {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.title {
  text-transform: uppercase;
  margin: 0;
  font-size: 5em;
  align-items: center;
  font-weight: bold;
  color: #fff;
}

.desc {
  font-size: 1.7em;
  margin-bottom: 10px;
  color: #c43131;
}

.play-btn {
  font-weight: bold;
  height: 50px;
  margin-top: 10px;
  font-size: 1.6em;
  border: none;
  border-radius: 6px;
  color: #fff;
  background-color: #c43131;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.play-btn:hover {
  background-color: #8c2b2b;
}

/*! Search */

form {
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.search-bar {
  color: #ffffff;
  font-size: 1.9em;
  width: 450px;
  height: 55px;
  border-radius: 6px 0 0 6px;
  background-color: #35363E;
  border: none;
  padding-right: 45px;
  font-family: 'Roboto', sans-serif;
}

.search-bar::placeholder {
  color: #ADB0B7;
}

.search-bar:focus {
  outline: none;
  border-color: transparent;
}

.search-enter {
  width: 55px;
  height: 57px;
  background-color: #c43131;
  border: none;
  border-radius: 0 6px 6px 0;
  color: #fff;
  font-weight: bold;
  display: block;
  padding-block-end: 6px;
  padding-block-start: 6px;
  padding-bottom: 6px;
  padding-inline-end: 12px;
  padding-inline-start: 12px;
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 6px;
  position: relative;
  transition: background-color 0.2s ease;
  margin-left: -1px;
  z-index: 2;
  font-size: 1.9em;
  text-align: center;
  cursor: pointer;
}

.search-enter:hover {
  background-color: #8c2b2b;
}

/*! About Section <3 */

#sec-section {
  font-family: 'Roboto', sans-serif;
  text-align: left;
}

.sec-title {
  margin: 0;
  color: #c43131;
  font-size: 1.9em;
}

.sec-desc {
  font-family: 'Roboto', 'Arial', sans-serif;
  margin: 0;
  color: #C3C7CD;
  font-size: 1.4em;
}

.sec-desc a {
  color: #c43131;
  text-decoration: none;
}
