/* 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("website-background.jpg");
  background-repeat: no-repeat; /* Prevents the image from tiling */ 
  background-size: cover;
  background-attachment: fixed; /* Keeps the background fixed when scrolling */
  background-color: black;   /* A fallback color if the image can't load */
  font-family:"Courier New";
  overflow:scroll;
}

.fancy {
  border:none;
  background-color:white;
  height:1px;
}

header {
  line-height:0.5;
  white-space:normal;
}

.blinkie {
  width:150px;
  height:auto;
}

.bio {display:block;
  text-align:center;
  color:white;
  font-family:"Luminari";
  font-stretch:ultra-expanded;
  white-space:normal;
  overflow:visible;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%; 
}

nav {
  display:flex;
  justify-content: space-between;
}

a:link, a:visited, a:active {
  color: white;
  font-family:"Luminari";
}

a:hover {
  color:#FBF2B5;
  font-family:"Luminari";
}

a:visited {
  font-style:italic;
  color:#FBF2B5;
  font-family:"Luminari";
}

.container {
  display: grid;
  grid-template-columns: 310px 1fr 310px;
  gap: 20px; 
  padding: 20px;
}

.left-container {
  flex: 0 0 auto; 
}

.music-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #2b1836;
  color: white;
  padding: 12px 12px;
  border-radius: 12px;
  width: 290px;
  font-family:"Luminari";
  margin-bottom: 6px;
}

.music-card img {
  width: 80px;
  height: 80px;
  border-radius: 6px;
  object-fit: cover;
  
}

.music-info .label {
  font-size: 12px;
  color: white;
  margin: 0;
  line-height:1;
  flex-direction: column;
  font-family:"Courier New";
}

.music-info .album {
  margin: 0;
}

.music-info .artist {
  font-size: 14px;
  margin: 0;
  line-height:1;
  gap:0px;
  color:#FBF2B5;
}

.about-me {
  display: flex;
  flex-direction:column;
  background: #2b1836;
  color: white;
  padding: 10px 12px;
  border-radius: 12px;
  width: 290px;
  margin-bottom: 6px;
}

.about-me .abtmedescription {
 font-size: 14px;
  color: white;
  margin: 0px;
  line-height:1.2;
  gap:0px;
  font-family:"Courier New";
  text-align:left;
}

.about-me .about-me-title {
   margin-bottom: 3px;
   margin-top:0px;
   font-family:"Luminari";
   text-align:left;
   color:#FBF2B5;
}

.aboutmepic {
   display: flex;
  flex-direction:column;
  background: #2b1836;
  color: white;
  padding: 10px 12px;
  border-radius: 12px;
  width: 290px;
  margin-bottom: 6px;
}

.center-container {
  background-color: white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  min-height: 300px; 
  position:relative;
  border: 2px solid #2b1836;
  max-height:710px;
  overflow:auto;
}
  
.center-container .top-image {
  display: block;  
  position: absolute;
  top: 0;
  left: 0;
  width:100%;
  height:auto;
}


.blogspot {
  display: flex;
  flex-direction: column;
  flex-wrap:wrap;
  gap: 0;
  padding: 60px 7px 0px 7px;
  border:none;
}

.post{
  margin: 0;
  line-height:1;
  flex-direction: column;
  text-align:left;
}

.post .header{
  font-size: 18px;
  font-weight:bold;
  color: #2b1836;
  font-family:"Luminari";
  line-height:1;
  margin:0;
}

.post .subtitle{
  font-size: 10px;
  color:#FBF2B5;
  font-family:"Luminari";
  line-height:1;
  -webkit-text-stroke-width: 0.5px;
  -webkit-text-stroke-color: #2b1836;
  margin:0;
  padding-top:3px;
}

.post .text{
  font-size: 14px;
  color: #2b1836;
  font-family:"Courier New";
  line-height:1.3;
  margin:0;
  padding-top:6px;
}

.postsplit {
  background-color:#2b1836;
  border:none;
  height:1px;
}

.right-container {
  flex: 0 0 auto; 
}

.right-container .square {
  display: flex;
  flex-direction:column;
  background: #2b1836;
  color: white;
  padding: 10px 12px;
  border-radius: 12px;
  width: 290px;
  height:auto;
  margin-bottom: 6px;
}

.findmetitle {
  margin-bottom: 3px;
   margin-top:0px;
   font-family:"Luminari";
   text-align:left;
   color:#FBF2B5;
}

