/*selectoes características cajas*/
#container{
    max-width: 1280px;
    margin: auto;
    background-color: rgb(248, 237, 224);
    width: 95%;
    border-radius: 15px;
} 
#top{
    background-color: rgb(242, 222, 199);
    margin: 1rem 0rem 0rem 0rem;
    overflow: hidden;
}

/*mobile first*/
@media screen and (min-width: 850px) {
    #container {
        width: 80%;
    }
}

article { width: 100%; }

.container {
    width: 95%; 
    margin: auto;
}

/**/
article{
    background-color: rgb(219, 192, 158);
    border-radius: 10px; 
    margin: 1rem 0rem 0.5rem 0rem; 
    justify-content: space-between;
}
main{
    display: flex;
    overflow: hidden;
    justify-content: space-between;
    align-items: stretch;
    row-gap: inherit;
    clear: both; 
    flex-direction: row;
}
footer{
    margin: 1rem;
}


/*títulos*/
header{
    background-color: rgb(219, 192, 158);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
h1, h2{
    font-family: "Orbitron", Arial, Helvetica, sans-serif;
    color: rgb(58, 16, 16);
}
h1{
    font-size: 2.5rem;
    padding: 0.3rem 0.8rem;
}
h2{
    font-size: 1.5rem;
    padding: 0.5rem;
}


/*características links*/
a{
    text-decoration: none;
    color: rgb(36, 9, 9);
    opacity: 85%;   
    padding: 0.3rem;
    margin: 0rem 0.3rem 0rem 0.3rem;
}
a:visited{
    color: rgb(50, 13, 42);
}
a:hover, a:active{
    color: rgb(97, 13, 13);
}

/*característica común en textos*/
p, footer, a{
    font-family: "Rubik", Arial, Helvetica, sans-serif;
}


/*características concretas texto*/
p{
    font-size: 1rem;
    text-overflow: inherit;
    padding: 0.3rem;
}

footer{
    font-size: 0.8rem;
}


/*características imágenes*/
#fotohorizontal{
    margin: 0rem 0rem 0.7rem 0rem;
    padding: 0.5rem 0rem;
}
img{
    float: left;
    max-width: 100%;
    padding: 0rem 0.9rem 0rem 0.6rem;
}


