:root
{
  --bg-color: #ff8fab;
  --frame-bg: #ffc2d1;
  --header-bg: #fb6f92;
  --text-color: white;
  --box-shadow: pink;
}

.dark-mode
{
  --bg-color: #121212;
  --frame-bg: #0A2647;
  --header-bg: #205295;
  --text-color: #ffffff;
  --box-shadow: #144272;
}

body.light-mode {
    background-color: #fb6f92;
}

/* Dark mode */
body.dark-mode {
    background-color: #0A2647;
}

body {
  background-color: var(--bg-color);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  overflow: hidden;
}

.frame-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0px 0px 20px var(--box-shadow);
  padding: 20px;
  width: 900px;
  height: 900px;
  background-color: var(--frame-bg);
}

.rectangle-svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;  
  height: 100%;
  pointer-events: none;
  box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.582);
}

.bubble, .second-bubble {
  position: absolute;
  background-color: var(--header-bg);
  color: white;
  padding: 15px;
  border-radius: 10px;
  max-width: 900px;
  max-height: 400px;
  font-family: "Gluten", serif;
  font-size: 22px;
  text-align: center;
  left: 30%;
  transform: translateX(-25%);
}

.bubble {
  top: 70px;
}

.second-bubble {
  bottom: 70px;
}

.bubble::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 70%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--header-bg);
}

.chibi-san {
  position: absolute;
  width: 200px;
  height: auto;
  left: 60%;
  bottom: 300px;
  transform: translateX(-50%);
}

.chibi-san-male
{
  position: absolute;
  width: 200px;
  height: 195px;
  left: 40%;
  bottom: 300px;
  transform: translateX(-50%);
}

.second-text, .name {
  text-align: center;
}

a {
  color: blue;
  text-decoration: none;
}

a:visited {
  color: blue;
}
