@charset "utf-8";
/* Author: Solange Mihanda Muhima
Date: March 25 2025
File name: StyleSheetMusicians
*/
/* General Styles */

    body, html {
  height: 100%;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

.bg-image {
  /* Full height */
  height: 90%;

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Images used */
.img1 { background-image: url("images/Musicians/pexels-clam-lo-1782448-3355365.jpg"); }
.img2 { background-image: url("images/Musicians/pexels-eric-esma-302047-894156.jpg"); }
.img3 { background-image: url("images/Musicians/pexels-nappy-936030.jpg"); }
.img4 { background-image: url("images/Musicians/pexels-stephanie-souza-272137-819335.jpg"); }
.img5 { background-image: url("images/Musicians/pexels-papa-yaw-956993-2531728.jpg"); }
.img6 { background-image: url("images/Musicians/pexels-pixabay-210766.jpg"); }

/* Position text in the middle of the page/image */
.bg-text {
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0, 0.4); /* Black w/opacity/see-through */
  color: white;
  font-weight: bold;
  font-size: 80px;
  border: 10px solid #f1f1f1;
  position: fixed; /* Stay fixed */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 500px;
  padding: 20px;
  text-align: center;
}