@charset "UTF-8";
/* CSS Document */

html{
    box-sizing: border-box;
	font-size: 62.5%;
}
*, *::before, *::after{
    box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html a{
    text-decoration: none;
}

@font-face{
    font-family: "trajan";
    src: url("../fonts/Trajans.ttf") format("truetype");
}

body{
    display: grid;
    place-items: center;
	margin: 3em;
    padding: 0;
    line-height: 1.6;
    background-color: black;
}
header h1{
    display: grid;
    font-family: "trajan",Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", "serif";
    place-items: center;
    font-size: 10em;
    color:#262626;
}
header p{
    font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
    font-size: 1.6em;
    color: whitesmoke;
    margin-bottom: 2rem;
}

section {
    display: flex;
    justify-content: center;
    flex-flow: wrap;
}
header div{
    display: flex;
    justify-content: center;
    background-color: black;
}
figure, img, figcaption{ 
    /*background-color: whitesmoke;*/
    padding: 1em;
    width: 100%;
    height: auto;
}
figcaption{
    font-family: "trajan",Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", "serif";
    background-color: whitesmoke;
    font-size: 1.1rem;
    color:#262626;
    text-align: center;
}
article {
    /*display: flex;*/
    background-color: whitesmoke;
    padding: 1em;
    max-width: 50%;
    color: dimgrey;
    text-align: left;
    text-indent: 1em each-line;
}
article br{
    text-indent: 1em;
}
h3{
    color: brown;
    font-size: 2.6em;
    text-align: center;
    font-family: "trajan",Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", "serif";
}
h2{
    font-family: "trajan",Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", "serif";
    text-align: center;
    color:#262626;
    font-size: 1.6em;
}

/*main{
    display: flex;
    align-items: flex-end;
    justify-content: center;
    column-gap: 2em;
}*/
.gallery{
    display: grid;
    gap: 1rem;
    grid-auto-rows: 22rem;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
}
.texto{
    display: flex;
    justify-content: center;
    column-gap: 2em;
    font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
    font-size: 1.3em;
}
.fondo{
    background-color: #030303;
    color:whitesmoke;
}
video{
    margin-top: 5rem;
    align-items: center;
}
footer{
    margin-top: 6rem;
    font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
    font-size: 1.3em;
    color:whitesmoke
}
footer a{
    text-decoration: none;
    color:brown;
    
}


