/* Adobe Fonts まつね */
.wf-loading {
  opacity: 0;
}

/* 変数を指定したい */
:root{
  --color-black: #424242;
  --color-white: #fefefe;
}

/* body */
body{
  height: 100vh;
  background: var(--color-white);
  color: var(--color-white);
  font-size: 2rem;
  font-family: 'メイリオ', 'ヒラギノ角ゴ', sans-serif;
  /* 結局フォントってこれでいいの？ */
  line-height: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 余白を作ろう */
.bodySpacer{
  width: fit-content;
  height: 80%;
}

/* いい感じのあれを入れよう */
.main{
  width: 80vw;
  max-width: 800px;
  height: 100%;
  background: url("../imgs/watercolor_black.jpg") center / cover no-repeat var(--color-black);
  padding: 10%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-direction: column;
}
.main p{
  mix-blend-mode: difference;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  white-space: nowrap;
}
.main .name{
  font-weight: 600;
  font-size: calc(1rem + 4vw);
}
.main .skills{
  line-height: 1.2;
}
.main .icons a{
  color: var(--color-white);
  text-decoration: none;
}

