main {
    display: block;
    max-width: 1200px;
    margin: 0 auto;
    text-align: justify;
}

.container {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin:10px;
}

.content {
	 flex: 3;
}

.sidebar {
	flex: 1;
}

figure {
	text-align:center;
	margin:10px;
	padding: 10px;
}

body {
    margin: 0;
    background-color: black;
    color:rgb(255, 255, 255);
    font-family: 'Lora', sans-serif;
}

.thumbnail {
    width: 200px;
    height: 200px;
}

.topbar {
    max-width: 1200px;
    width: 100%;
    background-color: #313663;
    height: auto;
    margin: 0 auto;
    display: flex;
    text-align: center;
}

.topbar a:link, a:visited {
    margin: 0;
    padding: 10px;
    background-color: #313663;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    width: 10%;
}

.topbar a:hover {
    background-color: rgb(107, 105, 205);
    color: rgb(255, 255, 255);
}

a {
    color: rgb(255, 255, 255);
    text-decoration: none;
}

a:hover {
    color: rgb(196, 196, 196);
    text-decoration: none;
}

img + em {
    display: block;
    margin: auto;
    text-align: center;
}

img {
    max-height: 500px;
    display: block;
    margin: auto;
}

.banner img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    display: block;
}

/* Estilo telf */
@media (max-width: 1200px) {
    .topbar {
        text-align: center;
        display: block;
    }

    .topbar a:link, a:visited {
        margin: 0;
        padding: 2px;
        background-color: #313663;
        color: white;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        min-width: 98.5%;
    }

    img {
        max-width: 90%;
        display: block;
        margin: auto;
    }
	
	.content {
	 flex: 1 1 100%;
}

	.sidebar {
		display:none;
	}

	.thumbnail {
        display:none;
    }
}
