@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Staatliches&family=Yantramanav:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;700&display=swap');

body, h1, h2, h3, ul, li {
    padding: 0;
    margin: 0;
}

p {
    text-align: left;
    line-height: 1.5; 
}

h1 {
    color: rgb(253, 253, 253);
    font-family: "Staatliches", sans-serif;
    font-weight: 200;
    font-style: normal;
    text-align: center;
    margin-bottom: 20px; 
}

h2, h3 {
    color: #0707c4;
    font-family: 'Bebas Neue', sans-serif; 
    font-size: 24px; 
}

body {
    background-color: #b5e9fc; 
    font-family: 'Source Sans Pro', sans-serif;
}

div {
    width: 800px;
    max-width: 95%;
    margin: 0 auto;
}

header {
    background-color: #0091ff;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
}

nav {
    border-top: 4px solid #000095;
    border-bottom: 4px solid #000095;
}

nav, article {
    margin: 0 auto;
    max-width: 800px;
    text-align: center;
}

article {
    background-color: #88c8fc;
    padding: 20px; 
    margin: 20px 0; 
    border-radius: 8px; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
}

footer {
    text-align: center;
    padding: 15px 0;
    color: #bbbb00; 
}

.centrada {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 70%;
}

.imagenPortada {
    width: 100%;
    height: auto;
}

.nombre-cantante {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    position: relative;
    font-size: 30px; 
}

.nombre-cantante::before,
.nombre-cantante::after {
    content: '';
    width: 40%; 
    height: 10px;
    background: linear-gradient(to right, #6BB3FF, #FFFFFF, #6BB3FF);
    margin: 0 10px;
    display: inline-block;
}

.volver-arriba {
    background-color: #0091ff;
    color: white;
    padding: 10px 15px; 
    border-radius: 5px;
    text-decoration: none; 
    position: fixed;
    bottom: 20px; 
    right: 20px;
}

.volver-arriba:hover {
    background-color: #0144c0; 
}


nav li {
    display: inline-block;
}

nav a {
    margin-bottom: 10px;
    padding: 15px;
    display: inline-block;
    background-color: #88c8fc;
    border-radius: 5px; 
    transition: background-color 0.3s ease; 
}

nav a:hover {
    background-color: #0144c0;
    color: aliceblue;
}

html {
    scroll-behavior: smooth;
}

@media (max-width: 600px) {
    nav {
        padding: 8px;
        text-align: center;
    }

    header {
        height: 130px;
        text-align: center;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .nombre-cantante {
        flex-direction: column;
    } 
}