html {
	font-family: arial;
	height: 100%;
}

body {
	height: 100%;
	margin: 0;
}

h1 {
	text-shadow: 2px 2px 5px #ffffff;
	margin: 0;
}

h2 {
	margin: 0;
}

a {
	color: inherit;
	text-decoration: none;
	transition: .3s;
}

a:hover {
	color: #444444;
	transition: .3s;
}

span {
	font-size: 10px;
	font-weight: bold;
	margin-top: 5px;
}

.background {
	background: linear-gradient(135deg, #ffff00 0, #ffc500 40%, #ffff00 80%, #ffc500 100%);
	height: 100%;
	position: fixed;
	width: 100%;
	z-index: -10;
}

.container {
	min-height: 100%;
}

.flexbox {	
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: space-around;
}

.photos {
	width: 60%;
    display: flex;
    align-items: baseline;
    justify-content: space-around;
    flex-wrap: wrap;
}

.photo_portrait {
	margin-top: 5px;

	display: flex;
	flex-direction: column;
	align-items: center;
}

.thumb_portrait {
	height: 126px;
	width: 84px;
}

.thumb_portrait_alternate {
	height: 126px;
	width: 116px;
}

.title {
    margin: 3em 0;
	text-align: center;
}

.home_menu {
    width: 100vw;
    height: 50%;

    display: flex;
	flex-wrap: wrap;
    justify-content: center;
}

.list {
    background-color: rgba(255, 255, 0, .25);
    border: 2px dotted black;
    font-weight: bold;

	width: 250px;
    min-height: 300px;

    list-style: none;
    margin: 0 10px;
    margin-bottom: 60px;
    padding: 0;
    text-align: center;

    display: flex;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
}

.list li {
	font-size: 14px;
	margin-top: 20px;
}

/* Artigos */

.artigos {
	font-size: 14px;
}

.artigos h1{
	padding: 3rem 0;
}

.artigos h3{
	font-weight: normal;
	margin-block-start: .5em;
	margin-block-end: .5em;
}

.artigos p {
	font-weight: bold;
	margin-block-start: .5em;
	margin-block-end: .5em;
}

.artigos a {
	color: #004bbf;
}
.artigos a:hover {
	color: #000979;
}

.artigos ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.artigos ul li {
	margin-bottom: 3rem;
}

.text-center {
	text-align: center;
}