*{
    box-sizing: border-box;
    font-family: 'Raleway', sans-serif;
}

body{
    height: 100vh;
    justify-content: center;
    align-items: center;
}

.titulo{
    text-align: center;
    background:#c49bdb;
    color: #fff;
    padding: 10px 0;
}
.container{
    max-width: 700px;
    margin: auto;
    padding: 20px;
}
section{
    border: 2px solid #c49bdb;
    border-radius: 7px;
    padding: 10px ;
    margin: 10px 0;
}
label{
    display: block;
    padding: 7px;
    border-radius: 7px;
    cursor: pointer;
    border: 1px dashed #ccc;
    margin-bottom: 3px;
}
label:hover{
    background: #cec0fc;
}
button{
    width: 80%;
    display: block;
    margin: auto;
    padding: 10px;
    background-color: #c49bdb;
    border: none;
    cursor:pointer;
    border-radius: 20px;
}
button:hover{
    background: #000;
    color: #fff;
}
h2{
    text-align: center;
    font-size: 20px;
}
#resultado{
    font-size: 20px;
    color: darkred;

}

footer {
	margin-top: 30px;
	background-color:#000000;
	padding: 10px;
	text-align: center;
	color: white;
}

.social-icons-container, .footer-menu-container {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 1rem;
}

.footer-menu-container {
	list-style-type: none;
	color:#fff;
	font-size: 25px;
}

.social-icon {
	height: 50px;
	width: 50px;
	border-radius: 50px;
	border: 1px solid #f8af28;
	background-image: url(img/logo-facebook.png);
	background-position: center;
	background-size: 40%;
	background-repeat: no-repeat;
	margin: 1rem;	
}

.social-icon:hover {
	background-color: #1f1d1d;
	filter: invert(1);
}

.social-icon:nth-of-type(2){
	background-image: url(img/logo-instagram.png);
}

.social-icon:nth-of-type(3){
	background-image: url(img/Twitter.png);
}
