* {
    box-sizing: border-box;
}

body {
    background-color: black;
    margin: 0;
    padding: 0;
}

.header {
    text-align: center;
    padding: 20px;
}

h1 {
    color: white;
    font-size: 3em;
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 1em;
}

.gallery {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    margin-bottom: 1em;
}

.thumbnail {
    width: calc(32% - 10px);
    min-width: 100px;
    object-fit: cover;
    object-position: center;
    margin: auto;
    border: 1px solid #ddd;
    cursor: pointer;
    z-index: 1;
}

.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999; /* Asegúrate de que esté por encima de otros elementos */
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: black;
}

.bchdir {
    color: white;
    font-size: 1em;
    text-align: center;
}

.contact {
    color: white;
    font-size: 1em;
    text-align: center;
    text-decoration: none;
    padding: 10px 20px;
    background-color: #c71010;
    border-radius: 5px;
}

