/* styles.css */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.album {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.photo {
    margin: 10px;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.photo img {
    max-width: 150px;  // Cambia esto según el tamaño deseado de tus fotos
    max-height: 150px;
    display: block;
    margin: auto;
}

.carousel {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.carousel img {
    max-width: 90%;
    max-height: 90%;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    font-size: 2rem;
    color: white;
    opacity: 0.7;
    cursor: pointer;
}

.carousel-btn.prev {
    left: 2%;
}

.carousel-btn.next {
    right: 2%;
}

.close-btn {
    position: absolute;
    top: 2%;
    right: 2%;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}
