*{
    box-sizing: border-box;
}

/* Parametros del cuerpo */

body{
    
    background-color: rgb(117, 117, 117);
    background-image: linear-gradient(315deg, #E6E8E6 0%, #303030 150%);
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
    margin: 0%;
    display: grid;
    grid-template-rows: .1fr 1fr 1fr;
}

/* Parametros del contenedor */
.contenedor{
    margin-top: 20%;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px 2px rgb(0, 0, 0);
    width: 500px;
    overflow: hidden; 
}

.header{
    padding: 4rem;
}

h2{
    padding: 1rem;
    text-align: center;
    margin: 0;
}

ul{
    list-style-type: none;
    padding: 0;
}

ul{
    font-size: 1.2rem;
    margin: 1rem 0;
}

ul li label{
    cursor: pointer;
}

/* Parametros de botón */
button{
    background-color: rgb(77, 77, 252);
    color: white;
    border: none;
    display: block;
    width: 100%;
    cursor: pointer;
    font-size: 1.1rem;
    font-family: 'Times New Roman', Times, serif;
    padding: 1.3rem;
}

/* Color al pasar el cursor sobre el botón */
button:hover{
    background-color: rgb(107, 107, 253);
}

/* Color al pulsar el botón */
button:focus{
    outline: none;
    background-color: rgb(19, 216, 35);
}

.cont-botones{
	width: 100%;
	margin-top: 40%;
	text-align: center;
}
.cont-botones a{
	text-decoration: none;
	color: black;
	padding: 20px;
	background-color: white;
	border-radius: 10px;
}
a:hover{
	background-color: #000000;
	transition: .8s;
	color: white;
}