/** ---- GENERAL ---- **/
body{
    background-image: url("/archivos/fondo.png");
    background-size: 100%;
    background-color: rgb(25, 25, 25, 0.6);
    background-blend-mode: soft-light;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
@font-face {
    font-family: "Quicksand";
    src: url("/archivos/static/Quicksand-Regular.ttf");
    font-weight: normal;
}
@font-face {
    font-family: "Quicksand";
    src: url("/archivos/static/Quicksand-Bold.ttf");
    font-weight: bold;
}
@font-face {
    font-family: "Quicksand";
    src: url("/archivos/static/Quicksand-Medium.ttf");
    font-weight: medium;
}
@font-face {
    font-family: "Quicksand";
    src: url("/archivos/static/Quicksand-Light.ttf");
    font-weight: light;
}
*{
    font-family: "Quicksand";
    font-size: 1.4rem;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a{
    text-decoration: none;
}


/** ---- HEADER ---- **/
header{
    background-color: #B4A8BC;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    max-height: fit-content;
}
header a{
    color: #3d3146;
    font-weight: medium;
    margin-left: 10px;
    margin-right: 10px;
}
#logo-header{
    width: 200px;
}

/** ---- SECCION ---- **/
.seccion{
    margin-top: 10px;
    margin-bottom: 10px;
}
.seccion img{
    width: 100%;
}
.tex{
    margin: auto;
    width: 70%;
    text-align:center;
    padding: 10px;
    color: white;
} 
.descri-div{
    background-color: rgb(0, 0, 0, 0.5);
    border: #3d3146;
    border-style: solid;
    border-width: 1px;
    padding: 10px;
    width: 50%;
    margin: auto;
    border-radius: 10px;
}
.descri{
    margin: auto;
    text-align: center;
    color: white;
    font-weight: normal;
}
b{
    font-weight: bold;
}

/** ---- FOOTER, DIGAMOS ----  **/
footer{
    margin: auto;
    justify-self: center;
    margin-top: 40px;
    margin-bottom: 40px;
}
.redes{
    margin: auto;
    width: 90%;
    color: white;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.iconos{
    margin-left: 40%;
}
.redes a{
    margin: 10px;
    align-self: center;
    color: white;
}
.redes img{
    width: 10%;
}

.icon1{
    width: 8%;
    margin: 2px;
}
.icon{
    width: 15%;
    margin: 10px;
}
.boton{
    background-color: black;
    font-weight: bold;
    color: #B4A8BC;
    margin: 10px;
    padding: 10px;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: #B4A8BC;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
a.boton{
    width: 400px;
    margin: auto;
    margin-top: 10px;
}

/** ---- ACERCA DE / AUTORA ---- **/
.texto{
    padding: 50px;
    color: white;
}
.texto p{
    margin: 5px;
}
.texto ul{
    margin: 15px;
}
.texto img{
    width: 100%;
    margin: 10px;
}

/**
@media (min-width:800px){
}
**/