body {
  margin: 0;
  font-family: 'Orbitron', Arial, sans-serif;
  background-color: #1E1B2E;
  color: #F4F4F4;
}

.container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  max-width: 1000px;
  margin: 0 auto;
  background-color: #3E2F5B;
  border: 2px solid #50A8FF;
  box-shadow: 0 0 10px #50A8FF;
}

.logo {
  background-color: #7ED4FF;
  padding: 20px;
  text-align: center;
  font-weight: bold;
  border: 2px solid #50A8FF;
  color: #1E1B2E;
  text-shadow: 0 0 4px #ffffff;
  box-shadow: 0 0 10px #50A8FF;
}

.main-content {
  display: flex;
  flex: 1;
}

.sidebar {
  background-color: #FFB3FF;
  padding: 20px;
  width: 200px;
  border: 2px solid #50A8FF;
  display: flex;
  flex-direction: column;
  gap: 1em;
  color: #1E1B2E;
  box-shadow: 0 0 10px #50A8FF;
}

.right-section {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.header {
  background-color: #8DFD9E;
  padding: 20px;
  text-align: center;
  border: 2px solid #50A8FF;
  color: #1E1B2E;
  font-weight: bold;
  text-shadow: 0 0 6px #ffffff;
  box-shadow: 0 0 10px #50A8FF;
}

/* Background image styling for links inside header */
.header a {
  background-image: url('link.png');
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 1280px 900px;
  padding-left: 30px;
  color: #1E1B2E;
  text-decoration: none;
  transition: color 0.3s ease;
}

.header a:hover {
  color: #50A8FF;
  text-decoration: underline;
}

.body-area {
  background-color: #2A2140;
  flex: 1;
  padding: 20px;
  text-align: center;
  position: relative;
  border: 2px solid #50A8FF;
  box-shadow: 0 0 10px #50A8FF;
}

.square {
  width: 700px;
  height: 200px;
  background-color: #7ED4FF;
  margin: 20px auto;
  color: #1E1B2E;
  font-size: 15px;
  padding-left: 10px;
  padding-top: 2px;
  display: block;
  text-align: left;
  border: 2px solid #8DFD9E;
  box-shadow: 0 0 10px #8DFD9E;
  border-radius: 8px;
}

.rectangles-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 0;
  margin-top: 20px;
  width: 100%;
  box-sizing: border-box;
  border: 2px solid #50A8FF;
  box-shadow: 0 0 10px #50A8FF;
}

.rectangle2, .rectangle1 {
  background-color: #3E2F5B;
  color: white;
  font-size: 16px;
  padding: 10px;
  text-align: left;
  box-sizing: border-box;
  height: 450px;
  border: 2px solid #50A8FF;
  border-radius: 8px;
  box-shadow: 0 0 10px #50A8FF;
}

.rectangle2 {
  width: 500px;
  box-shadow: 0 0 10px #8DFD9E, 0 0 20px #8DFD9E;
}

.rectangle2 .title_rec2 {
  font-size: 24px;
  font-weight: bold;
  color: #8DFD9E;
  margin-bottom: 15px;
  text-align: center;
  text-shadow: 0 0 8px #8DFD9E;
}

.rectangle2 .paragraph_rec2 {
  font-size: 16px;
  font-style: italic;
  color: #F4F4F4;
}

.rectangle1 {
  width: 200px;
  color: #F4F4F4;
  text-align: center;
  box-shadow: 0 0 10px #FFB3FF;
}
/* === New rectangles section styles === */
.more-rectangles {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rect-row {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.rect-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.rect-box {
  background-color: #2A2140;
  border: 2px solid #8DFD9E;
  color: #F4F4F4;
  font-family: 'Orbitron', Arial, sans-serif;
  padding: 15px 20px;
  border-radius: 10px;
  width: 300px;
  height: 400px;
  text-align: center;
  font-size: 1.1em;
  box-shadow: 0 0 10px #8DFD9E, 0 0 20px #50A8FF;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rect-box:hover {
  transform: scale(1.03);
  box-shadow: 0 0 15px #FFB3FF, 0 0 25px #8DFD9E;
}

.footer {
  background-color: #3E2F5B;
  padding: 20px;
  text-align: center;
  border: 2px solid #50A8FF;
  color: #F4F4F4;
  box-shadow: 0 0 10px #50A8FF;
}

