@keyframes fade {
	0% {
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

html {
	font-family: "Montserrat", "Lato", sans-serif;
	font-size: 10px;
}

body {
	text-align: center;
	padding: 100px 40px;
	font-size: 1.6rem;
}

h1 {
	font-family: "Montserrat";
	font-weight: 300;
}

h1 span {
	font-family: "Lato";
}

h2 {
	font-weight: 300;
	width: 50%;
	display: inline-block;
}

h3 {
	margin-top: 70px;
	color: #777;
}

h5 {
	font-size: 2rem;
	margin: 0px 0 0 0;
}

.project__text {
	display: inline-block;
	width: 50%;
}

img {
	width: 50%;
	margin-bottom: 50px;
}

.dot {
	width: 10px;
	height: 10px;
	background-color: #ff5c8c;
	display: inline-block;
	border-radius: 50%;
	position: relative;
	top: 0px;
	left: 4px;
	animation: fade 3s linear infinite;
}

@media screen and (max-width: 460px) {

	html {
		font-size: 8px;
	}

	body {
	text-align: center;
	padding: 60px 20px;
	font-size: 1.6rem;
}

h2 {
	width: 100%;
	}

	img {
		width: 100%;
	}

	.project__text {
		display: inline-block;
		width: 100%;
	}

}



