@import url('https://fonts.googleapis.com/css?family=Noto+Sans+KR:300,400,500,700&display=swap&subset=korean');

html {
  height: 100%;
	margin: 0;
	padding: 0;
}
body {
	font-family: 'Noto Sans KR';
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
	margin: 0;
  width: 100%;
  height: 100%;
  letter-spacing: -.05em;
}

header {
	background: rgb(60, 164, 255);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  gap: 16px;
  padding: 32px 0;
}

.pepeWrapper {
  --width: calc(100px + 10vw);
  border-radius: 50%;
  overflow: hidden;
  width: var(--width);
  height: var(--width);
}
.pepe {
  height: 100%;
}

h1 {
  color: white;
  font-weight: 500;
  font-size: 48px;
  margin: 0;
  letter-spacing: -3px;
}

.desc {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.line {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.line .tag {
  background: #08f;
  border-radius: 12px;
  color: white;
  font-size: 14px;
  font-weight: 400;
  line-height: 1em;
  padding: 4px 16px 6px;
}
.links {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px 16px;
  max-width: 300px;
  width: 100%;
}
.link {
  color: black;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  align-self: stretch;
  font-weight: 500;
  font-size: 16px;
}
.link .iconWrapper {
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
}
.link.youtube .iconWrapper {
  background: red;
}
.link.twitch .iconWrapper {
  background: rgb(145, 71, 255);
}
.link.wakki .iconWrapper {
  background: rgb(90, 196, 103);
}
.link .iconWrapper .icon {
  width: 24px;
}
.link.twitch .iconWrapper .icon {
  width: 22px;
}

.imgArea {
  max-width: 320px;
  margin: 8px;
  padding-bottom: 32px;
}
.imgArea img {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

@media only screen and (max-width:512px) {
  h1 {
    font-weight: 500;
    font-size: 32px;
    letter-spacing: -1px;
  }
  .line {
    font-size: 12px;
  }
}