* {
	font-family: sans-serif;
	color: rgba(0, 0, 0, 0.75);
}

body {
	margin: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100vh;
	padding: 0px 30px;
}

.wrapper {
	max-width: 960px;
	width: 100%;
	margin: 30px auto;
	/* transform: scale(0.8); */
}

.landing-page {
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.list{
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

img {
	width: 50%;
	max-height: 300px;
	height: auto;
	margin: 0 0 15px;
    object-fit: cover;
}

h1 {
	font-size: 48px;
	margin: 0;
}

p {
	font-size: 16px;
	text-align: center;
}

a {
	font-size: 16px;
	cursor: pointer;
	border: none;
	color: #399ce3;
    text-decoration: underline !important;
    text-underline-position: under;
    transition: .4s;
}

a:hover{
	text-decoration: none !important;
	color:black;
}

@media(max-width:768px){
	.landing-page{
		flex-direction: column;
	}

	img{
		width: 90%;
	}

	.list{
		align-items: center;
	}

	h1{
		font-size: 36px;
	}
}