*, 
*:before, 
*:after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  height: 100%;
}

body {
	height: 100%;
	background-color: #2E2D4D;
	margin: 0;
	font-family: "Roboto", Arial, sans-serif;
  padding:2em;
}
h1 { color:#fff;}
p {
	margin: 0;
	line-height: 1.6;
}

.container {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.btn {
	border: none;
	cursor: pointer;
	outline: none;
}

.btn-open {
	background-color: #337357;
	color: #E4E3D3;
	font-size: 15px;
	border-radius: 4px;
	padding: 8px 16px;
}

.btn-close {
	font-size: 30px;
	border-radius: 100%;
	width: 40px;
	height: 40px;
	position: absolute;
	right: -15px;
	top: -15px;
	line-height: 16px;
	background-color: #333;
	color: #fff;
}

.relative {
	position: relative;
	padding: 32px 16px;
}

.modal-content {
	border-radius: 8px;
}

.credit {
	position: absolute;
	bottom: 10px;
	margin-left: auto;
	margin-right: auto;
	left: 0;
	right: 0;
	width: 100%;
	text-align: center;
}

.credit a {
	display: block;
	margin: 0 auto;
	text-decoration: none;
	color: #E4E3D3;
	font-family: monospace;

}