/* ---- reset ---- */
:root {
	--background-color: #060606;
}

body {
    margin: 0;
    font-family: "Anta", Arial, Helvetica, sans-serif;
	background-color: var(--background-color);
    background: url(../img/fondo.webp);
    background-size: auto;
    background-position: top center;
}

canvas {
    display: block;
    vertical-align: bottom;
}

footer {
    bottom: 0;
    font-size: 12pt;
    text-align: center;
    width: 100%;
}

footer div {
    padding: 0.5rem;
    color: #fff;
}

footer a {
	color: cadetblue;
	text-decoration: none;
}

footer a:hover {
	text-decoration: underline;
	color: #fff;
}

label {
	margin-bottom: 0.2rem;
    display: inline-block;
}

input {
	font-family: "Anta", Arial, Helvetica, sans-serif;
	margin-bottom: 1rem;
	height: 2rem;
	border: none;
    background-color: #ccc;
    font-size: 14pt;
    width: 100%;
}

input:focus{
    outline: none;
}

hr {
	margin-bottom: 1.5rem;
	border: 1px solid #666666;
}

.container {
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
}

.content {
	position: relative;
	margin: auto;
}

#logo {
	max-width: 100%;
}

#info {
	max-width: 100%;
}

.titulo {
	background-image: url(../img/form-background.webp);
	border-radius: 0.4rem;	
	margin: 0rem 1rem 1rem 1rem;
	height: 2rem;
	box-shadow: 0px 0px 10px 0px #fff;
	font-size: 18pt;
	text-align: center;
	color: #fff;
	background-position: center;
}

.form-container {
	background-color: #000;
	background-image: url(../img/form-background.webp);
	border-radius: 0.4rem;
	color: #fff;
    font-size: 14pt;
    padding: 1rem;
    box-shadow: 0px 0px 10px 0px #fff;
    margin: 0 1rem 0 1rem;
}

#send_button {
	height: 2rem;
}

#send_button:hover {
	background-color: #999;
	cursor: pointer;
}

/* ---- particles.js container ---- */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* ---- stats.js ---- */
/*
.count-particles {
    background: #000022;
    position: absolute;
    top: 48px;
    left: 0;
    width: 80px;
    color: #13E8E9;
    font-size: .8em;
    text-align: left;
    text-indent: 4px;
    line-height: 14px;
    padding-bottom: 2px;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: bold;
}

.js-count-particles {
    font-size: 1.1em;
}
*/
/*
#stats,
.count-particles {
    -webkit-user-select: none;
    margin-top: 5px;
    margin-left: 5px;
}

#stats {
    border-radius: 3px 3px 0 0;
    overflow: hidden;
}

.count-particles {
    border-radius: 0 0 3px 3px;
}
*/

@media (max-width: 800px) {
	body {
		background-size: auto;	
	}
}