body {
  width: 100vw;
  height: 100vh;
  padding: 20px;
  margin: 0;
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow-x: hidden;
}

.root {
  width: 800px;
  margin-top: 30px;

  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  grid-auto-rows: auto;
}

.left {
}

.bio {
}

.bio-tag {
}

.bio-tag-title {
  color: var(--bg-color);
  padding: 3px;
  background-color: var(--lavender);
}

.middle {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  box-sizing: border-box;
  width: 100%;
  padding: 0px 40px;
  margin-bottom: 10px;
}

.logo {
  margin: 8px 0px;
}

.right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.updates {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}

.updates-title {
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  margin-bottom: 8px;
  padding: 3px 4px;
  background-color: var(--viridian);
  color: var(--bg-color);
}

.update {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  padding: 0px 0px 8px 0px;
  text-decoration: none;
  color: inherit;
}

.update:hover {
  text-decoration: var(--border-green) underline;
  text-underline-offset: 2px;
  color: var(--viridian);

  .update-image {
    border: var(--border-green);
  }
}

.update-image {
  width: 50px;
  height: 50px;
  object-fit: cover;
  box-sizing: border-box;
  padding: 2px;
  border: 1px dashed transparent;
  flex-shrink: 0;
}

.update-title {
  margin: 4px 0;
  font-weight: bold;
  font-size: small;
  color: var(--viridian);
}

.update-text {
  margin: 0;
  font-size: small;
}

.guestbook-link {
  text-decoration: none;
  color: inherit;
  width: 100%;
  box-sizing: border-box;
  padding: 2px 5px;
  background-color: var(--pink);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border: var(--border-translucent);
}

.guestbook-link-title {
  margin: 0;
  font-size: small;
  text-decoration: var(--border-translucent) underline;
  text-underline-offset: 2px;
}

.guestbook-link-image {
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.buttons {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  box-sizing: border-box;
  row-gap: 5px;
}

.button-share {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.komorebi-button {
  width: 88px;
}

.button-frog-container {
  width: 88px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0px 4px;
  box-sizing: border-box;
}

.button-frog {
  width: 20px;
}

.postcar {
  position: absolute;
  left: 0;
  bottom: 1px;
  transform: scaleX(-1);
}

.welcome-banner {
  position: absolute;
  top: 10px;
  right: 0;
  animation: welcomeBanner 1s ease-in-out infinite;
}

@keyframes welcomeBanner {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(4px);
  }

  100% {
    transform: translateY(0);
  }
}

.tips {
  max-width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  box-sizing: border-box;
  gap: 15px;
  margin: 10px 0px;
}

.tipLeft {
  transform: scaleX(-1);
  flex-shrink: 0;
  width: 24px;
}

.tipRight {
  flex-shrink: 0;
  width: 24px;
}

.qnaq {
  margin: 0;
  align-self: center;
}

.qna {
  max-width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  box-sizing: border-box;
  gap: 15px;
  margin: 10px 0px;
}
