/* Fontes */

@font-face {
	font-family: 'Ubuntu Light';
	src: url('../../fonts/Ubuntu-L.ttf');
}

@font-face {
	font-family: 'Darleston';
	src: url('../../fonts/Darleston.ttf');
}

/* Body */

* {
	font-family: 'Ubuntu Light';
	font-size: 17px;
}

body {
	background: rgba(240, 240, 240, 0.8);
	padding: 0.25%;
}

h1 {
	font-size: 36px;
	color: rgba(20, 20, 20, 1.0);
}
h2 {
	font-size: 28px;
	color: rgba(20, 20, 20, 1.0);
}

p {
	text-align: justify;
	color: rgba(20, 20, 20, 1.0);
}

/* Notícias */

.noticia {
	width: 98%;
	background: rgba(140, 140, 140, 0.03);
	position: relative;
	margin-top: 0;
	margin-left: 1%;
	margin-bottom: 1.5%;
	border: 1px solid rgba(20, 20, 20, 0.2);
	border-radius: 4px;
	overflow-x: scroll;
}

.noticia h2 {
	margin-top: 0;
	margin-bottom: 0;
	padding: 1%;
}

.corpo-noticia { /* ;) :p */
	width: 97.25%;
	margin-top: 1%;
	margin-left: 1.375%;
	margin-bottom: 1%;
}

.publicacao-noticia {
	text-align: right;
	margin-top: 3%;
	margin-right: 0.5%;
	margin-bottom: 0;
}

/* Spoiler :p */

.seta-spoiler {
	position: absolute;
	top: 1%;
	right: 1%;
}

/* Scrollbar */

::-webkit-scrollbar {
	width: 8px;
	height: 12px;
}
::-webkit-scrollbar-track {
	background: transparent;
}
::-webkit-scrollbar-thumb {
	background: rgba(60, 60, 60, 0.2);
}
::-webkit-scrollbar-thumb:hover {
	background: rgba(60, 60, 60, 0.3);
}

/* Responsividade */

@media screen and (max-width: 768px) {
	/* Body */

	* {
		font-size: 15px;
	}

	h1 {
		font-size: 32px;
		color: rgba(20, 20, 20, 1.0);
	}
	h2 {
		font-size: 24px;
		color: rgba(20, 20, 20, 1.0);
	}

	/* Notícias */

	.noticia {
		margin-bottom: 4%;
	}

	.noticia h2 {
		padding: 2.5%;
	}

	.corpo-noticia img { /* :p :p */
		width: 100%;
		height: auto;
	}

	/* Spoiler :p */

	.seta-spoiler {
		width: 36px;
		height: auto;
	}
}
