/*Reset CSS*/
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/*Modal*/

html {
    font-family: poppins;
}

button {
	margin: 10px auto;
    padding: 15px 15px;
    background-color: #0ba052;
    border-radius: 5px;
    border: none;
    font-size: 16px;
    color:#fff;
    cursor: pointer;
}

img {
	border-radius: 20px;
	text-align: center;
}

dialog {
	position: fixed;
	border-radius: 20px;
	border: 3px solid #07a051;
	padding: 10px;
	top: 50%;
	left: 50%;
	width: 640px;
    background-color: rgba(255,255,255, 1);
	transform: translate(-50%, -50%);
	text-align: center;
    z-index: 9999;
    
    animation-delay: 3s;
	animation: fadeIn 1s ease;
	box-shadow: 5px 5px 25px #000;
}

@keyframes fadeIn {
	0% { opacity: 0;
	}
}


#closeMyDialog:click {
	dialog-close: #myDialog;
}

#myDialog:close {
	console-log: "The dialog was closed. This is a native browser event for the dialog element.";
}

#myDialog:cancel {
	console-log: "The escape key was pressed which closed the modal dialog. This is a native browser event for the dialog element.";
}

dialog::backdrop {
    background: #FFFFFF;
}
