/*
Theme Name: Fun Stuff Theme
Author: You
Description: A retro Y2K-styled theme for your blog
Version: 1.0
*/

body {
  margin: 0;
  font-family: 'Press Start 2P', cursive;
  background-color: #c2f9ff;
}

.background {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px; /* space between windows */
  padding: 40px 20px;
}

.window {
  background: white;
  border: 3px solid pink;
  width: 90%;
  max-width: 800px;
  border-radius: 5px;
  box-shadow: 0 5px 0 #ffa6c9;
  margin: 0 auto;
}

.title-bar {
  background: #ffcafc;
  color: purple;
  font-size: 14px;
  padding: 5px;
  text-align: right;
  border-bottom: 2px solid pink;
}

.content {
  padding: 30px 40px;
  text-align: left; /* key change */

}

h1 {
  font-size: 12px;
  color: #ff66cc;
  margin-bottom: 30px;
}

h3 {
  font-size: 20px;
  color: #ff69b4;
  text-shadow: 0 0 10px #ff69b4;
  margin: 0.5rem 0;
}

.flowchart {
  display: block;
  font-size: 14px;
  text-align: left;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.node {
  background: white;
  border: 2px solid #ff99cc;
  padding: 10px 20px;
  border-radius: 12px;
  box-shadow: 3px 3px 0 #ffb6d9;
  cursor: pointer;
  transition: transform 0.2s;
}

.node:hover {
  transform: scale(1.05);
}

/* Add sparkle backgrounds if desired */
.sparkles-left,
.sparkles-right {
  position: absolute;
  top: 10%;
  width: 100px;
  height: 300px;
  background-image: url('https://mission197.com/assets/sparkles.png'); /* you'll need to add this image */
  background-repeat: no-repeat;
  background-size: contain;
}

.sparkles-left {
  left: 5%;
}

.sparkles-right {
  right: 5%;
}

.container {
  max-width: 900px; /* or 1000px for even wider */
  width: 90%;
  margin: 0 auto;
}

.box {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.site,
.site-main,
.content-area,
.wp-site-blocks {
  max-width: 100% !important;
  width: 100% !important;
}