body, html {
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
}
.logo {
  position: fixed;
  top: 0; /* 上端にぴったり付ける */
  left: 20px; /* 左端からスペースの余裕を持たせる */
  width: calc(150px * 0.3);
  pointer-events: none; /* クリックイベントを無効化 */
}
/* SNSアイコンのスタイル */
.social-icons {
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.social-icons a {
  color: white;
  font-size: 24px;
  text-decoration: none;
}