@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

html, body {
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
    font-family: "Roboto", sans-serif;
}

h2{
    font-size: 50px;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

p {
    font-size: 20px;
    text-align: justify;
}
.container {
    max-width: 1000px;
    margin: 3 auto;
    padding: 140px;
}



header {
    position: fixed;
    left: 0vw;
    top: 0vh;
    width: 100vw;
    height: 10vh;
    background-color: darkblue;
    color: white;
}

header p {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 20px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: rgb(132, 96, 142);
}

nav {
    position: fixed;
    left: 0vw;
    top: 8vh;
    width: 100vw;
    height: 10vh;
    background-color: darkmagenta;
    color: black;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

nav a {
    text-decoration: none;
    color: violet;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    border: violet solid 1px;
    border-radius: 5px;
    display: block;
    padding: 5px;
    height: 5vh;
    line-height: 5vh;
    filter:brightness(6);
    background-size: cover;
    background-position: center;
}

nav a:hover {
    background-color: violet;
    color: white;
    padding: 20px;
    filter: none;
}

section {
    width: 100vw;
    height: 100vh;
    padding: 20px;
}

#inicio {
    background-color: darkblue;
    font-size: 80px;
    display: flex;
    font-family: 'Times New Roman', Times, serif;
    
}

#inicio p{
    font-size: 50px;
    font-family:'Times New Roman', Times, serif
}

#perfil {
    background-color: blue;
}

#perfil p {
    width: 75%;
    font-size: 25px;
}

#paso {
    background-color: blueviolet;
    height: auto;
    min-height: 120vh;
    padding: 20px;
}

.fotospaso {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 5px;
    box-sizing: border-box;
}

.column {
    flex: 1 1 25%;
    padding: 5px; 
    max-width: 25%;
    margin: 0; 
}

.column img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    margin: 0;
    padding: 0;
}



#futuro {
    background-color: blue;
}

#futuro p {
    width: 75%;
    font-size: 30px;
}


#spotify {
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
}

#spotify .contenedor {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#spotify iframe {
    width: 100%;
    height: 100%;
    border: none;
}


#seba {
background-image: linear-gradient(
    0deg, rgba(0, 0, 0, 0.5),  rgba(0, 0, 0, 0.5)  
)
,url("imagenes/fuego.jpg");
display: flex;
image-rendering: center ;
}

#seba p {
    font-size: 25px;
    text-align: justify;
    color: white;
    font-weight: bold; 
}

#seba h2 {
    color: white;
    font-weight: bold;
}

.color-acento {
    filter: brightness(50);
    filter: blur(100);
    font-size: 70px;
    filter: saturate(50);
}

.imagenperfil {
    width: 500px;
    height: auto;
    margin-left: 20px;
    float: right;
    margin-right: -300px;
}

@media screen and (max-width: 768px) {
    h2 {
        font-size: 2rem;
    }
    p {
        font-size: 1rem;
    }
    .container {
        padding: 80px;
    }
    #inicio {
        font-size: 3rem;
    }
    #inicio p {
        font-size: 1.75rem;
    }
    #perfil p, #futuro p {
        width: 100%;
        font-size: 1rem;
    }
    .column {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .imagenperfil {
        width: 100%;
        margin-left: 0;
        float: none;
    }
}

@media screen and (max-width: 1024px) {
    h2 {
        font-size: 2.5rem;
    }
    p {
        font-size: 1.125rem;
    }
    .container {
        padding: 100px;
    }
    #inicio {
        font-size: 4rem;
    }
    #inicio p {
        font-size: 2rem;
    }
    #perfil p, #futuro p {
        font-size: 1.25rem;
    }
}