@font-face {
    font-family: Squarepeg;
    src: url('fonts/Square_Peg/SquarePeg-Regular.ttf');
}

@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-repeat: no-repeat;
    background-position: center;
    background-color: rgb(47, 47, 62);
    color: rgb(255, 255, 255);
    font-family: Source_Code_Pro;
    font-size: medium;
    font-weight: lighter;
    text-align: justify;
}


h1 {
    color: rgb(237, 237, 237);
    font-size: 100px;
    font-family: "Squarepeg";
    margin-bottom: 10px;
}

/* Contenedor con estilo de margen excluyendo al footer */
.margin-general {
    max-width: 1200px;
    margin: 150px auto;
}

.album-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 50px 230px;
}

.album-card {
    background-color: rgb(16, 20, 36);
    border-radius: 20px;
    max-width: 300px;
    padding: 20px;
    color: white;
    text-align: center;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Estilos de la imagen de la card */
.album-card img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* Estilo h2 de la card */
.album-card h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    margin-top: 0.10px;
    font-family: Squarepeg;
}

/* Estilos paragraph de la card */
.album-card p {
    font-size: 0.95em;
    line-height: 1.4;
    text-align: center;
    margin-left: 10px;
    margin-right: 10px;
}

/* Estilos del estado hover de la card */
.album-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
}


/* Estilos del botón de volver al inicio (pág INDEX) */
.boton-volver {
    display: inline-block;
    margin: 40px auto;
    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;
}

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

/* 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%; /* (ancho completo de la página) */
}

.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;
}






