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

html {
	font-size: 62.5%;
}

body {
	font-family: 'Inter', sans-serif;
	background-color: hsl(0, 0%, 8%);
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.social-media-card {
	background-color: hsl(0, 0%, 12%);
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 375px;
	max-width: 410px;
	border-radius: 20px;
	padding-bottom: 1.5rem;
}

.social-media-img {
	text-align: center;
	margin-top: 3rem;
	margin-bottom: 2rem;
}

.social-media-img img {
	border-radius: 50%;
	width: 50%;
}

.social-text h1 {
	color: hsl(0, 0%, 100%);
	font-weight: normal;
	font-size: 2.3rem;
	margin-bottom: 1rem;
	text-align: center;
}

.social-text p:nth-child(2) {
	color: hsl(75, 94%, 57%);
	font-size: 1.3rem;
	text-align: center;
}

.social-text p:nth-child(3) {
	color: hsl(0, 0%, 75%);
	margin-top: 2.5rem;
	font-size: 1.3rem;
	margin-bottom: 3rem;
}

.social-links {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 90%;
	text-align: center;
	color: hsl(0, 0%, 8%);
	transition: all 0.3s linear;
}

.social-link {
	padding: 1.3rem 0;
	margin-bottom: 1.3rem;
	background-color: hsl(0, 0%, 20%);
	border-radius: 7px;
}

.social-link {
	color: hsl(0, 0%, 100%);
	text-decoration: none;
	font-size: 1.3rem;
	font-weight: bold;
}

.social-link:hover {
	background-color: hsl(75, 94%, 57%);
	color: hsl(0, 0%, 8%);
}

@media (min-width: 1000px) {
	.social-media-card {
		width: 40vw;
        max-width: 50vh;
		
		border-radius: 20px;
	}

	.social-media-img {
		margin-top: 5rem;
		margin-bottom: 3rem;
	}

	.social-text h1 {
		font-size: 2.5rem;
		margin-bottom: 1.3rem;
	}

	.social-text p:nth-child(2) {
		font-size: 1.4rem;
	}

	.social-text p:nth-child(3) {
		margin-top: 2.8rem;
		font-size: 1.5rem;
	}

	.social-links {
		width: 85%;
	}

	.social-link {
		padding: 1.5rem 0;
		margin-bottom: 1.5rem;
	}

	.social-link {
		text-decoration: none;
		font-size: 1.5rem;
	}
}
