body {
  background: #000;
  color: #b30000;
  font-family: "TMP";
  margin: 0;
}

.container {
  width: 95%;
  margin: 30px auto;
  display: grid;
  grid-template-columns: 250px 1fr;
  grid-template-rows: auto auto auto;
  grid-gap: 30px 40px;
}

.title {
  grid-column: 1 / 3;
  font-size: 80px;
  margin: 0;
}

.profile-wrapper {
  width: 250px;
  height: 330px;
  border: 4px solid #b30000;
  border-radius: 20px;
}

.profile-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* いい感じに切り取って表示 */
  border-radius: 20px;
}

/* 黒背景のテキストボックス */
.box {
  background: #000;
  border: 4px solid #b30000;
  border-radius: 20px;
  padding: 20px;
  color: #b30000;
  font-size: 30px;
}

/* 左下メニュー */
.menu-box {
  width: 230px;
  background: #000;
  border: 4px solid #b30000;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.menu-box a {
  text-decoration: none;
  font-size: 50px;
  color: #b30000;
}
