/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  
  background-image: url(/squeeb2.png);
  color: #110B11;
  font-family: Advent Pro;
  font-size:16pt;
}
.container_type_1 {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly ;
  text-align: center;
  align-items:center;
}
.child1 {
  margin: 5px;
}
.child {
  margin: 5px;
  overflow-y: scroll;
}

.music-player {
            background-color: #E2C1FF;
            border: 2px solid #191919;
            border-radius: 5px;
            padding: 5px;
            display: flex;
            align-items: center;
            font-family: Advent Pro;
            font-size:14pt;
        }
        .music-player select, .music-player button {
            background-color: #191919;
            font-family: Advent Pro;
            color: #FFF7F5;
            border: 2px solid #191919;
            margin-right: 5px;
            cursor: pointer;
            padding: 2px 5px;
             font-size:14pt;
        }