@font-face {
    font-family: Source_Code_Pro;
    src: url('/fonts/Source_Code_Pro/SourceCodePro-VariableFont_wght.ttf');
}

body {
    background-image: url('../images/background3.jpg');
    background-size: cover;
    background-position: center;
    background-color: rgb(19, 30, 59);
    font-family: Source_Code_Pro;
    
}

/* Estilos del botón de volver al inicio (pág INDEX) */
.boton-volver {
    display: inline-block;
    margin-left: 225px;
    margin-top: 200px;
    padding: 12px 30px;
    background-color: rgb(24, 25, 29);
    color: white;
    text-decoration: none;
    font-weight: lighter;
    border-radius: 50px;
    border: 0.05px solid white;
    transition: background 0.3s, color 0.3s, transform 0.2s;
    text-align: center;
    max-width: 1200px;
    display: inline-block;

}

/* Estilos del estado hover del botón de volver al inicio*/
.boton-volver:hover {
    background-color: white;
    color: black;
    transform: scale(1.05);
}

.gallery-photos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 50px 20px;
    max-width: 1200px;
    margin: 150px auto;
}

.gallery-photos img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

/* Estilo del footer de la web */
footer {
    background-color: #2222229f;
    color: #fff;
    text-align: center;
    padding: 16px;
    margin-top: 32px;
    font-size: 14px;
    width: 100%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 90px;
    padding-top: 50px;
}

.footer-content p {
    margin: 5px 0;
}

.footer-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: normal;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #778bff;
}