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

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

* {
  box-sizing: border-box;
}

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

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

/* Images used */
.img1 { background-image: url("images/Actors/pexels-pixabay-236171.jpg"); }
.img2 { background-image: url("images/Actors/pexels-daria-nekipelova-112078039-9665491.jpg"); }
.img3 { background-image: url("images/Actors/pexels-nadin-sh-78971847-11232218.jpg"); }
.img4 { background-image: url("images/Actors/pexels-ron-lach-8088375.jpg"); }
.img5 { background-image: url("images/Actors/pexels-cottonbro-6835506.jpg"); }
.img6 { background-image: url("images/Actors/pexels-cottonbro-5427366.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: 300px;
  padding: 20px;
  text-align: center;
}