<style>

body{

}

  .navbar {
    display: flex;
    align-items: center;
    background-color: #1a1a1a;
    padding: 10px 20px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-width: 3px;
    border-bottom-style: solid;
    border-image: linear-gradient(to right , purple , red, purple);
    border-image-slice: 1;
  }

  h1 {
    text-align: center;
    font-size: 23px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    padding-left: 10px;
    padding-right: 10px;
    color: white;
  }

  .logo {
    display: flex;
    align-items: center;
    color: white;
    font-size: 20px;
    font-weight: bold;
    border-radius: 60%;
    box-shadow: 2px 2px 20px 2px red;
}

.logo:hover {
    cursor: pointer;
}

  .logo img {
    width: 65px;
    height: 55px;
    border-radius: 50%;
    margin-right: 10px;
  }

  .header {
    display: flex;
    margin-left: 50%;
    color: gray;
  }

  ul,li {
    display: flex;
    color: gray;
  }

  ul,li:hover {
    color: white;
    cursor: pointer;
  }

  .search-box {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 5px;
    margin-left: 20px;
    overflow: hidden;
    width: 400px;
    box-shadow: 3px 4px 35px 5px white;
  }

  .search-box input {
    border: none;
    outline: none;
    padding: 10px;
    flex: 1;
    font-size: 14px;
  }

  .search-box button {
    background: #8400ff;
    border: none;
    color: white;
    padding: 0px 0px 0px 0px;
    padding-bottom: 0%;
    cursor: pointer;

  }

  .search-box button:hover {
    background: red
  }

  .search-box button img {
    padding-bottom: 0px;
    width: 35px;
    height: 35px;
  }

  .album {
    width: 75%;
    height: 70px;
    background-color: black;
    margin-top: 85px;
    margin-left: 15px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-color: black;
    border-bottom-width: 2px;
    border-bottom-style: solid;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    background-image: linear-gradient(to right, purple,red, purple, red,  purple);

  }

  #one {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 35px;
    font-weight: 700;
    padding-top: 10px;
    padding-left: 35px;
    text-align: left;
  }

  .music {
    display: flex;
    margin-top: 50px;
    margin-left: 25px;
  }

  .table {
    display: flex;
    margin-left: 120px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 15px;
  }

  .music img {
    border-radius: 15px;
        box-shadow: 0px 0px 10px black;
  }

  .audio {
    margin-left: 30%;
    margin-top: 50px;
  }

  .lyrics {
    display: flex;
    justify-content: right;
    align-items: right;
    text-align: center;
    background-color: dimgray;
    color: white;
    padding: 20px;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    line-height: 1.6;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    margin-left: 22%;
    margin-top: 20px;
  }

  .lyrics::-webkit-scrollbar {
    width: 8px;
  }

  .lyrics::-webkit-scrollbar-thumb {
    background-color: dimgray;
    border-radius: 4px;
  }
</style>