/* Base styles */
* { 
  box-sizing: border-box; 
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #333;
  line-height: 1.6;
}

/* Page content */
.content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.site-header {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.site-header h1 {
  margin: 0;
  font-size: 24px;
}

.section p {
  margin: 0 0 16px;
}

.section code {
  background: #f0f0f0;
  padding: 2px 4px;
  border-radius: 3px;
  font-family: monospace;
}

/* Section heading */
.section h2 {
  margin: 0 0 16px;
  font-size: 20px;
  color: #555;
  z-index: 1000;
}

/* Create modal styles according to the requirements */
.modal {
  position: fixed;
  display: flex;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  justify-content: center;
  align-items: center;
  z-index: 2;
}


.content {
  z-index: 1;
}

.modal-backdrop {
  background: rgba(0,0,0,0.5);
  width: 100%;
  height: 100%;
  z-index: 1;
}

.modal-content {
  border-radius: 15px;
  position: absolute;
  background: white;
  padding: 15px 20px;
  /* margin-top: 250px; */
  margin-left: 50px;
  margin-right: 50px;
  box-shadow: 5px 10px 12px #4d4d4d;
  z-index: 2;
}

.modal-content h2 {
  color: #49b6ff;
}

