@font-face {
	font-family: 'Broaster';
	src: url('./assets/fonts/Broaster.otf') format('opentype');
}

@font-face {
	font-family: 'Montserrat';
	src: url('./assets/fonts/Montserrat.ttf') format('opentype');
}

.grid {
	display: grid;
	place-items: center;
}

body {
	text-align: center;
	background-color: hsl(0, 0%, 8%);
	color: white;
	font-family: 'Broaster';
	min-height: 100vh;
	margin: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 20px;
}

main {
	max-width: 500px;
	width: 100%;
	background-color: red;
	border-radius: 1rem;
	background-color: hsl(0, 0%, 12%);
	padding: 25px 0px;
}

.profile-section {
	& img {
		width: 100%;
		border-radius: 0%;
	}
	& .details-container h1 {
		font-weight: 700;
	}
	& .details-container p {
		font-family: 'Montserrat';
		font-size: 15px;
		text-align: center;
		margin-top: -5%;
		color: hsl(75, 94%, 57%);
	}
}

.medialinks-section {
	font-family: 'Montserrat';
	text-align: center;
	width: 90%;
	margin-top: 3%;
	gap: 15px;

	& button {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
	font-family: 'Montserrat';
	border: none;
	border-radius: 1rem;
	padding: 10px 0;
	width: 100%;
	height: 50px;
	color: white;
	font-size: 16px;
	font-weight: 600;
	background-color: hsl(0, 0%, 20%);
	cursor: pointer;
	}

  & .button-link {
		display: inline-block;
		text-decoration: none;
		width: 100%;
}

	& button:hover {
		background-color: hsl(75, 94%, 57%);
		color: hsl(0, 0%, 8%);
		cursor: pointer;
		caret-color: black;
	}
  
  & button img.icon {
		margin-right: 8px;
  }
}