@charset "utf-8";

:root {
  --main-font-color: #333333;
}

@font-face {
  font-family: "Sawarabi Gothic";
  src: url("./assets/fonts/SawarabiGothic-Regular.ttf") format("truetype");
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: "Sawarabi Gothic", serif;
  font-weight: 400;
  font-style: normal;
  color: var(--main-font-color);
}

#wrapper {
  max-width: 500px;
  margin: 0 auto;
}

h1 {
  margin-top: 50px;
  margin-bottom: 50px;
  text-align: center;
}

#my-icon {
  max-width: 100px;
  margin: 0 auto 20px auto;
}
#my-icon img {
  width: 100%;
}

#my-detail {
  text-align: center;
  margin-bottom: 100px;
}

#sns {
  margin-bottom: 50px;
  border-bottom: 1px solid var(--main-font-color);
  padding-bottom: 10px;
  text-align: center;
}

#sns-links {
  max-width: 50px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sns-icon {
  width: 100%;
}

footer {
  margin-top: 100px;
  height: 100px;
}

footer > p {
  text-align: center;
}

@media screen and (max-width: 400px) {
  #wrapper {
    width: 70vw;
  }
}
