* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
	font-family: 'Montserrat', sans-serif;
	text-rendering: optimizeLegibility;
	color: #3E4956;
	height: 100%;
	overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

a {
	text-decoration: none;
}

/* Background */
body {
	background: linear-gradient(to bottom right, #40AADB, #4083DB);
}

.stripes {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: grid;
	grid: 180px 260px auto 220px / repeat(10, 1fr);
	transform: skewY(-12deg);
	transform-origin: 70%;
	z-index: -100;
  }
  
  
  .stripes :nth-child(2) {
	grid-area:  1 / span 10;
	background: linear-gradient(to bottom right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2));
  }
  
  .stripes :nth-child(3) {
	grid-area: 2 / span 10;
	background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.1), rgba(244, 244, 244, 0));
  }
  
  .stripes :nth-child(5) {
	grid-area: 4 / span 10;
	background: linear-gradient(to left, rgba(95, 230, 250, 0), rgba(95, 230, 250, 0.3));;
  }

/* Card */
.card {
	width: 630px;
	margin: 50px auto;
	background-color: white;
	box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
	display: flexbox;
    justify-content: center;
    align-items: center;
}

.card__content {
	padding-top: 40px;
	text-align: center;
}

.card__content h1 {
	margin-top: 30px;
	margin-bottom: 25px;
	font-size: 24px;
	font-weight: 400;
}

.card__content p {
	font-weight: 300;
	font-size: 16px;
	max-width: 400px;
	margin: 0 auto;
	margin-top: 15px;
}

#blog-link {
	font-weight: 300;
	display: block;
	margin-top: 25px;
}

#blog-link a {
	color: #3471B0;
}

/* Footer */
.card__footer {
 	padding: 35px 0 25px 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.card__footer .social-link {
	height: 40px;
	margin: 0 10px;
}

.card__footer svg.social-link path {
    fill: #E3EAF1;
    -webkit-transition: fill 400ms ease;
	  -moz-transition: fill 400ms ease;
	  -ms-transition: fill 400ms ease;
	  -o-transition: fill 400ms ease;
    transition: fill 400ms ease;
}

.card__footer svg.social-link:hover path {
	fill: #3471B0;
}

/* Responsiveness */
@media only screen and (max-width : 600px) {
	.card {
		width: calc(100% - 40px); /* Maintain 30px margin on each side */
        height: calc(100% - 40px); /* Maintain 30px margin on each side */
	}

	.card__content h1 {
		font-size: 24px;
	}

	.card__content p {
		padding: 0 25px 0 25px;
	}
}
