
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+KR&display=swap");

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

html {
  font-family:Apercu,sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #EC4D36;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  background-color: #1D1B1B;
}

body::after {
  content: "@yejinc";
  display: block;
  margin-top: 50px;
  color: #F0EFF4;
  font-size: 12px;
  font-weight: 600;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  padding: 12px 56px;
  border-radius: 2px;
  background-color: #fff;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.1);
}

.header h1 {
  position: relative;
  top: 1px;
}

.header h1 img {
  display: block;
  width: auto;
  height: 52px;
}

.header a {
  display: block;
  text-decoration: none;
  font-size: 0.875rem;
  color: #EC8B5E;
}

.header a:hover {
  opacity: 0.5;
}

.header a:visited {
  color: inherit;
}