* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    font-family: Bahnschcrift;
}

html {
    scroll-behavior: smooth;
}

@font-face {
    font-family: Bahnschcrift;
    src: url(../bahnshcrift/Bahnschrift.woff);
}

body {
    height: max-content;
    background-image: url("../imgs/fondoweb.jpg");
    background-repeat: repeat;
    background-size: 100%;
    margin: 0 auto;
}

header {
    margin: 0 auto;
    height: 150vh;
    font-family: Bahnschcrift;
    font-weight: 100;
    font-size: 500%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30%;
    background-image: url("../imgs/fondototal.png");
    background-position-x: center;
    background-position-y: center;
    background-repeat: no-repeat;
    background-size: cover;
}

header a {
    color: black;
    text-decoration: none;
}

header a:hover {
    color: white;
    transition: .5s;
}

.secciones {
    height: 200vh;
    width: 80%;
    margin: 0 auto;
    position: relative;
}
.bgRetratos {
    position: absolute;
    width:100%;
    height:100%;
}

.fotos{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-around;
    flex-wrap: wrap;
    position: relative;
} 

a{
    width: 50%;
}
a:hover{
    filter: grayscale(100%) drop-shadow(16px 16px 20px yellow);;
    transition: .5s;
}

.retratos{
    width: 100%;
}

.bio {
    font-family: Bahnschcrift;
    color: white;
    min-height: 100vh;
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.textobio {
    width: 60%;
    margin: 7%;
}

.textobio h2 {
    font-size: 8em;
}

.textobio p {
    font-size: 1.5em;
    font-weight: 100;
}

.imagenbio {
    min-height: 50%;
    display: flex;
    align-items: center;
    justify-content: left;
}

.imagenbio img {
    width: 90%
}

footer {
    background: black;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.containerfot {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    height: 200px;

}

.redesociales img {
    height: 200px;
}

.paginasociales {
    align-self: flex-start;
    color: white;
    height: 200px;
    width: 550px;
    font-family: Bahnschcrift;
    font-weight: lighter;
    font-style: normal;
    font-size: 40px;
    display: grid;
    grid-template-columns: 10% 85%;
    grid-template-rows: 25% 25% 25%;
}

.paginasociales p {
    justify-self: start;
    font-size: 40px;
}

.paginasociales a {
    text-decoration: none;
    color: white;
}

.paginasociales p:hover {
    opacity: 50%;
}

@media only screen and (max-width: 1300px) {
    .secciones{
        height: 170vh;
    }
}
@media only screen and (max-width: 1200px) {
    .secciones{
        height: 150vh;
    }
}
@media only screen and (max-width: 1050px) {
    .secciones{
        height: 120vh;
    }
    .textobio p {
        font-size: 1.2em;
    }
}
@media only screen and (max-width: 900px) {
    .secciones{
        height: 100vh;
    }
    .textobio p {
        font-size: .8em;
    }
}
@media only screen and (max-width: 700px) {

    header {
        font-size: 3em;
        height: 100vh;
    }

    header a {
        color: white;
    }

    .secciones{
        height: 50vh;
    }

    .bio {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .textobio h2 {
        font-size: 3em;
    }

    .textobio p {
        font-size: 1em;
    }

    .imagenbio {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .imagenbio img {
        margin: 10%;
        width: 70%;
    }

    .containerfot {
        width: 200px;
    }

    .logo img {
        height: 100px;
    }

    .redesociales img {
        height: 100px;
    }

    .paginasociales {
        height: 100px;
        width: 200px;
        font-size: 30px;
    }

    .paginasociales i {
        font-size: 20px;
        margin: auto;
    }

    .paginasociales p {
        font-size: 20px;
    }
}