/* 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-color: #f06543;
background-image: linear-gradient(315deg, #f06543 0%, #ffbe3d 74%);
  color: black;
  font-family: garamond;
  max-width: 1000px; 
  margin: auto
  ;
}

  h1, h2 {color: DarkMagenta; text-align: center;}
  h2 {font-size: 1.2em;}
  
 hr {
  width: calc(100% + 98px);
  position: relative;
  left: -50px;
}

article, header {
  background-color:  #d2b4de ;
  border: 10px double #87529c;
  border-radius: 50px;
  padding: 15px;
  margin:10px 0;
}

img {
  display: block;
  margin: auto;
}

.lastlistenedto {
  background-color: #e97451;
  background-image: linear-gradient(316deg, #e97451 0%, #f4a460 74%);
  margin: 5px 0px;
  border: 10px double #87529c;
  border-radius: 40px;
  padding:5px;
}

.widget-lastfm {
 background-color: #e97451;
background-image: linear-gradient(316deg, #e97451 0%, #f4a460 74%);
text-align: center;
  height: 1.2em;
  width: 100%;
  border:none;
}
  
.main {
  float: right;
  width: 75%;
}

.left {
  position: fixed;
  height: calc(100vh - 60px);
  width: 250px;
  padding-top:20px;
 color: #4B61D1;
background-color: #e97451;
  background-image: linear-gradient(316deg, #e97451 0%, #f4a460 74%);
  border: 10px double  #d46700 ;
  border-radius: 50px;

}

#content {
  max-width: 80ch;
  margin-left: 300px;
  
  #badges {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  width: 100%;
  justify-content: center;
  }
  
#credit {
text-align: center;
}

