/* General body styling */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #1e1e1e 0%, #3a3a3a 100%);
  color: #e0e0e0;
  margin: 0;
  padding: 30px 0;
}

/* Center container */
center {
  max-width: 900px;
  margin: auto;
  padding: 0 20px;
}

/* Headings */
h1 {
  font-family: 'Arial Black', sans-serif;
  font-size: 2.8rem;
  color: #ff3b3b;
  margin-bottom: 10px;
  text-shadow: 0 0 8px #ff3b3b;
}

h3 {
  font-weight: 600;
  color: #ff6f6f;
  margin: 8px 0 18px 0;
  text-shadow: 0 0 5px #ff6f6f;
}

h4, h5 {
  font-weight: 400;
  font-style: italic;
  color: #ccc;
  margin: 8px 0 15px 0;
}

/* Paragraph */
p {
  line-height: 1.7;
  font-size: 1.1rem;
  max-width: 850px;
  margin: 18px auto;
  color: #ddd;
  text-align: justify;
}

/* Horizontal rule */
hr {
  border: 0;
  height: 3px;
  background: #ff3b3b;
  box-shadow: 0 0 6px #ff3b3b;
  margin: 35px 0;
}

/* Table styling */
table {
  width: 70%;
  margin: 30px auto;
  border-collapse: collapse;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  box-shadow: 0 0 15px rgba(255, 59, 59, 0.5);
  border-radius: 12px;
  overflow: hidden;
  background-color: #2b2b2b;
}

thead {
  background-color: #ff3b3b;
  color: white;
}

thead th {
  padding: 15px;
  font-size: 18px;
}

tbody tr:nth-child(odd) {
  background-color: #383838;
}

tbody tr:nth-child(even) {
  background-color: #2f2f2f;
}

tbody td {
  padding: 15px;
  font-size: 1rem;
  color: #ddd;
}

/* Images inside table */
table img {
  border-radius: 15px;
  transition: transform 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 59, 59, 0.6);
}

table img:hover {
  transform: scale(1.07);
  cursor: pointer;
  box-shadow: 0 0 20px #ff3b3b;
}

/* Link styling */
a {
  color: #ff6f6f;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  transition: color 0.25s ease-in-out;
}

a:hover {
  color: #ff1a1a;
  text-decoration: underline;
}

/* iframe styling */
iframe {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(255, 59, 59, 0.7);
}

/* UA SCHOOL Image */
img[alt="UA SCHOOL"] {
  width: 110px;
  height: 110px;
  border-radius: 18px;
  margin: 30px auto 15px auto;
  display: block;
  box-shadow: 0 0 15px #ff3b3b;
}

/* Heading and image inline */
h1 img {
  vertical-align: middle;
  margin-left: 12px;
  filter: drop-shadow(0 0 4px #ff3b3b);
}
