@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@400;500;700&display=swap');

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

section{
   font-family:'Noto Serif TC';
}

.link-bg{
   background-color: #604D53;
   min-height: 100vh; 
   padding: 60px 0;
}

.link-card{
	padding: 70px 20px;
	background-color: #FCECEF;
	border-radius: 30px;
	max-width: 600px;
	margin: 0 auto;
}

.avatar{
	display: flex;
	justify-content: center;
}

.link-title{
	color: #604D53;
	font-size: 20px;
	font-weight: 700;
	padding: 20px 0;
	text-align: center;
}

.link-p{
	color: #604D53;
	font-size: 16px;
	text-align: center;
	font-weight: 500;
	padding: 10px 0;
	max-width: 550px;
	margin: 0 auto;
	letter-spacing: 2px;
	line-height: 1.4;
}

.icon-link{
	display: flex;
	justify-content: center;
	align-items: center;
	gap:10px;
}

.icon-link>li a{
	display: flex;
  	align-items: center;
  	justify-content: center;
	background-color: #DB7F8E;
	border-radius: 50%;
 	width: 40px;
 	aspect-ratio: 1/1;
	margin: 10px 0;
}

.icon-link > li a img{
  width: auto; 
  height: auto;
}

.links{
	margin: 20px 0;
}

.link-a{
	display: flex;
	align-items: center;
	padding: 10px;
	background-color: #fff;
	box-shadow: 0 2px 3px #00000029;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 500;
	margin-top:15px;
}

.link-a > p{
	text-align: center;
	width: 100%;
	color: #604D53;
}

@media(max-width:768px){
	.link-bg{
		padding:0;
	}
	.link-card{
		border-radius: 0px;
		min-height: 100vh;
	}
	.avatar img{
		width: 92px;
		height: 92px;
	}
	.link-a > p{
		font-size: 14px;
	}
}