body {
  /*margin: 0;*/
  background-color: blue;
  background-image: url("src/cio61007.jpg");
  color: #fcba03;
  font-family: Papyrus;
  font-size: 180%;
  display: flex;


  /* ----------- FONTS ----------- */
  h5 {
    text-shadow: -5px 0 black, 0 1px black, 3px 0 black, 0 -1px black;
  }
  /* ----------- FONTS ----------- */

  /* ----------- LINKS ----------- */
  /* unvisited link */
  a:link {
    color: red;
  }

  /* visited link */
  a:visited {
    color: pink;
  }

  /* mouse over link */
  a:hover {
    color: hotpink;
  }

  /* selected link */
  a:active {
    color: white;
  }
  /* ----------- LINKS ----------- */


  /* ----------- NAVBAR ----------- */
  .navbar {
    width: 200px; /* Ancho de la navbar */
    background-color: #47310699; /* Color de fondo */
    padding: 20px 10px;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1); /* Sombra suave a la derecha */
    border-top: 1px solid blue; /* Borde arriba */
    border-bottom: 1px solid red;
  }


  .navbar ul li {
    margin-bottom: 10px; /* Espacio entre elementos */
  }

  .navbar ul li a{
    text-decoration: none;
    color: #b137de;;
    background-color: #b137de;
    font-weight: bold;
    text-align: center;
  }

  .navbar ul li a:hover {
    color: #ffcc00;
    background-color: #b137de80;
  }
  /* ----------- NAVBAR ----------- */

  /* ----------- IMAGE GALLERY ----------- */
  .collage-container {
    position: relative;
    width: 100%;
    height: 800px;
    margin: 20px 0;
    overflow: hidden;
  }
  
  .photo-item {
    position: absolute;
    cursor: pointer;
    transition: transform 0.3s ease, z-index 0.3s ease;
    border: 3px solid #333;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.3);
  }
  
  .photo-item:hover {
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 8px 8px 20px rgba(0,0,0,0.5);
  }
  
  .photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  /* Modal styles */
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    backdrop-filter: blur(5px);
  }
  
  .modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid #fff;
    box-shadow: 0 0 30px rgba(0,0,0,0.8);
  }
  
  .close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
  }
  
  .close:hover,
  .close:focus {
    color: #bbb;
    text-decoration: none;
  }
  
  /* Random positioning for collage effect */
  .photo-1 {
    top: 10%;
    left: 15%;
    width: 200px;
    height: 150px;
    transform: rotate(-5deg);
  }
  
  .photo-2 {
    top: 25%;
    left: 60%;
    width: 180px;
    height: 140px;
    transform: rotate(8deg);
  }
  
  .photo-3 {
    top: 45%;
    left: 10%;
    width: 160px;
    height: 120px;
    transform: rotate(-12deg);
  }
  
  .photo-4 {
    top: 60%;
    left: 50%;
    width: 220px;
    height: 160px;
    transform: rotate(3deg);
  }
  
  .photo-5 {
    top: 15%;
    left: 35%;
    width: 140px;
    height: 110px;
    transform: rotate(15deg);
  }
  
  .photo-6 {
    top: 70%;
    left: 25%;
    width: 190px;
    height: 130px;
    transform: rotate(-8deg);
  }
  /* ----------- IMAGE GALLERY ----------- */

  .content {
    flex: 1;
    padding: 20px;
    /* background-color: #13b0b570;*/
    background-color: #3b0b5270;
  }
}

