* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: roboto;
}

body {
	height: 100vh;
}

p {
	font-size: 12px;
}

.wrapper {
	margin: 0 auto;
	width: 100%;
	height: 100%;
	display: flex;
    align-items: flex-start;
    justify-content: space-around;
	background-color: #4ca150;
}

.main {
	display: flex;
	justify-content: space-around;
	flex-direction: column;
	width: 100%;
	max-width: 360px;
	background-color: white;
	overflow: hidden;
	border-radius: 20px;
	padding: 20px;
	margin: 40px 20px;
	box-shadow: 0 2px 24px -10px #333;
}

ul {
	margin-bottom: 20px;
	list-style-type: none;
}

ul:last-child {
	margin-bottom: 0;
}

ul li {
	line-height: 26px;
}

.logo {
	max-width: 300px;
    width: 100%;
    height: auto;
	margin-bottom: 20px;
}