/* Global styles */
body {
  background-color: #f8f8f8; /* Elegant off-white background */
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans', sans-serif;
  color: #2c3e50; /* Dark blue-gray text for elegance */
  line-height: 1.6;
}

/* Main container styling */
#main {
  display: flex;
  justify-content: center;
  padding: 20px;
}

/* Screen container for centering and max-width */
#screen {
  width: 100%;
  max-width: 1200px;
  margin: 50px;
}

/* Content container with elegant styling */
#content {
  background-color: #ffffff;
  padding: 50px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Video background (if used) */
#myVideo {
  position: fixed;
  left: 0;
  top: -10%;
  min-width: 100%;
  min-height: 120%;
  z-index: -1; /* Video behind content */
}

/* Headings styling */
h1, h2, h3 {
  font-family: 'Amatic SC', cursive;
  color: #2c3e50;
  margin-top: 50px;
}

h1 {
  color: #F39C12; /* Elegant accent color */
  font-size: 3rem;
  margin-bottom: 20px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 15px;
}

/* Paragraph styling */
p {
  margin-bottom: 20px;
  font-size: 1rem;
}

/* Link styling */
a {
  color: #F39C12;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #D35400;
  text-decoration: underline;
}

/* Table styling */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-family: Arial, sans-serif;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

thead {
  background-color: #2c3e50;
  color: #fff;
}

thead th {
  padding: 12px 15px;
  text-align: left;
}

tbody td {
  padding: 12px 15px;
  border: 1px solid #ddd;
}

tbody tr:nth-child(even) {
  background-color: #ecf0f1;
}

tbody tr:hover {
  background-color: #bdc3c7;
}

tbody td:first-child {
  font-weight: bold;
  background-color: #f0f0f0;
}

/* Highlighted text styling */
.highlight {
  background-color: #ffeb3b;
  padding: 0.2em 0.4em;
  border-radius: 3px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  font-weight: bold;
}

/* Footer styling */
footer {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  text-align: center;
  font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #content {
    padding: 30px;
  }
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  p, a {
    font-size: 0.95rem;
  }
}
