*{
	margin:0;
	padding:0;
	list-style:none;
	text-decoration:none;
}


/********************************************
Modal
*********************************************
*/
html
 {
    font-family: poppins;
}

button 
{
    padding: 15px 15px;
    margin-top: 30px;
    margin-left: 30px;
    background-color: rgb(0, 0, 0);
    border-radius: 5px;
    border: none;
    font-size: 16px;
    color: white;
    cursor: pointer;

}
button:hover
{
    padding: 15px 15px;
    margin-top: 30px;
    margin-left: 30px;
    background-color: rgb(49, 255, 66);
    border-radius: 5px;
    border: none;
    font-size: 16px;
    color: rgb(0, 0, 0);
    cursor: pointer;

}
.modal-container
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(79,79,79,0.7);
    z-index: 1;
    visibility:hidden ;
}
.modal-content
{
    width: 750px;
    height: auto;
    padding:10px ;
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    text-align: center;
}
.modal-content h2
{
    font-size: 25px;
    font-weight: 500px;
}
.modal-content img
{
    width: 100px;
    margin:30px 0px;
}
.modal-content p 
{
    font-size: 14px;
	text-align: justify;
    font-weight: 400;
    margin-bottom: 20px;
}
h3
{
	color: white;
	font-size: 30px;
	text-align: center;
    font-weight: 400;
    margin-bottom: 20px;
}
.close
{
    width: 100%;
    height: 50px;
    line-height: 50px;
    border-radius: 10px;
    background-color: rgb(17, 195, 62);
    cursor: pointer;
}
.close p
{
    color:white;
    font-size: x-large;
    font-weight: 400;
}
.close:hover
{
    background-color: hsl(135, 84%, 40%);
}

/********************************************
Modal
*********************************************
*/

#contenedor{
	position:relative;
	margin:5vh auto;
	width:1000px;
	height:500px;
}

#lienzo{
	background:url(../img/grid.jpg);
}

#contenedor button{
	display:block;
	position: relative;
	margin:5px 0;
	padding:10px;
	cursor:pointer;
}

#vertical{
	display:none;
}
.botones
{
	display: flex;
	flex-wrap: wrap;
    flex-grow: 1;
}
.btn_action
{
    display: flex;
}
.parrafo{
	font-size:18px;
}
.options{
	font-size:15px;
}

@media all and (orientation: portrait){

	#contenedor{
		display:none;
	}

	#vertical{
		display:block;
		position:fixed;
		width:100%;
		height:100vh;
		z-index:1;
		background:url(../img/rotarVertical.svg);
		background-size:cover;
		background-position:center;
	}

}




