@charset "utf-8";
/* CSS Document */

body {
	background-color: #f3eeea;
    text-align: center;
    margin: 0; 
	align-items: center;
}

header {
    display: flex; 
    align-items: center; 
    padding: 10px; 
}

.buttons-header {
	display: flex;
    justify-content: space-between;  
	padding: 10px;
}

a {
	color: black;
	text-decoration: none;
}

.school-header {
	margin-right: 15px;
	background-color: #8a6344;
	color: white;
	font-weight: 100;
}

.own-header {
	margin-right: 15px;
	font-weight: 100;
}

.gallery-header {
	margin-right: 320px;
	font-weight: 100;
}

h1{
	margin-right: 600px;
}

main {
	width: 100%;
}

.galeria {
    display: flex;
	width: 1600px;
	margin-left: 100px;
}

.imagen-principal {
    position: relative;
    width: 70%; /* Ajusta según sea necesario */
}

.imagen-principal img {
    width: 95%;
    height: auto; /* Mantiene la proporción de la imagen */
}

.texto {
    position: absolute;
    bottom: 20px; /* Ajusta la posición vertical */
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.7); /* Fondo blanco semi-transparente */
    padding: 10px;
    font-size: 24px; /* Tamaño de fuente */
    text-align: center;
}

.imagenes-secundarias {
    display: flex;
    flex-direction: column;
    width: 10%; /* Ajusta según sea necesario */
}

.imagen-secundaria {
    margin: 10px 0; /* Espacio entre imágenes */
}

.imagen-secundaria img {
    width: 100%; /* Ajusta al contenedor */
    height: auto; /* Mantiene la proporción de la imagen */
}

.imagen-secundaria p {
    text-align: center; /* Centra el texto debajo de la imagen */
    font-size: 18px; /* Tamaño de fuente */
}

footer {
	text-align: start;
	margin-top: 100px;
}
