
.carousel-inner img {
    max-height: 80vh;
    object-fit:contain;
}

.btn-primary {
    background-color: #001154;
}

body {
    background-image: url("img/web/fondo.webp");
    background-size: cover;
    background-attachment: fixed;
    cursor: url("img/web/foguete.png"), auto;
}

.spinner-border {
    display: none;
}

.square-image {
    position: relative;
    width: 100%; /* Ancho del contenedor */
    padding-top: 100%; /* Mantiene la proporción 1:1 */
    background-color: rgba(0,0,0,0.2); /* Color de fondo en caso de ausencia de imagen */
    display: flex; /* Usar flexbox para centrar el contenido */
    align-items: center;
    justify-content: center;

}

.square-image  img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ajusta la imagen para cubrir el contenedor */
  }