:root {
  --margin-top-long: 40px;
  --margin-top-short: 20px;
  --margin-bottom-long: 40px;
  --margin-bottom-short: 20px;
}

.Container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  max-width: 780px;
  height: 100%;
  margin: 0 auto;
  padding: 0;
  overflow: auto;
}

.Container__Product {
  width: 100%;
}

.Container__Title {
  text-align: center;
}

.Profile {
  margin-bottom: var(--margin-bottom-long);
  text-align: center;
}

.Profile__SNS {
  display: flex;
  justify-content: center;
}

.Profile__Icon {
  margin: 0 5px;
}

.Profile__Icon i {
  color: #000000;
}

.Products {
  margin-bottom: var(--margin-bottom-short);
}

.Product {
  margin-bottom: var(--margin-bottom-short);
  text-align: center;
}

.Product__Type {
  text-align: center;
}

.Product__Title {
  text-align: center;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  body {
    margin: 0;
    padding: 0;
  }

  .Container {
    justify-content: start;
    margin-top: var(--margin-top-short);
    margin-bottom: var(--margin-bottom-short);
    height: auto;
  }
}

@media (prefers-color-scheme: dark) {
  body {
    color: #ebedec;
    background: #3d3d3b;
  }

  a:link {
    color: #b2c8f5;
  }

  a:visited {
    color: #7f81d8;
  }

  .Profile__Icon i {
    color: #ebedec;
  }
}
