body {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: black;
  color: #ffeebb;
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-size: 12pt;
  text-align: justify;
  display: flex; /* Enables two-column layout */
}

/* Left Section */
.left {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* Align content to the top */
  padding: 20px;
  text-align: center; /* Centers text */
}

.left img {
  max-width: 100%;
  height: auto;
  margin-top: 10px;
}

/* Right Section */
.right {
  width: 60%;
  padding: 20px;
}

/* Links */
.left a {
  color: #fe9e00; /* Golden Yellow */
  text-decoration: none;
}

.left a:hover {
  text-decoration: underline;
}

h1, h2, h3, h4 {
  color: #fe9e00;
}

h1 {
  margin-top: 20px;  /* Space above h4 */
  margin-bottom: 10px; /* Space below h4 */
}

h2 {
  margin-top: 24px;  /* Space above h4 */
  margin-bottom: 10px; /* Space below h4 */
}

h4 {
  margin-top: 12px;  /* Space above h4 */
  margin-bottom: 4px; /* Space below h4 */
}

hr {
  border: none;  /* Removes default styling */
  height: 3px;   /* Adjust thickness */
  background-color: #444422; /* Orange color */
}

.email {
  font-family: "Courier New", Courier, monospace; /* Teletype font */
  color: #BBBBBB; /* Light gray color */
  font-size: 10pt; /* Smaller font size */
}

span.high {
  background-color: #804d00;
  color: #ffeebb;
  padding: 4px;
  border-radius: 8px;
  animation: blink 1s infinite alternate; /* Blinking effect */
}

/* Blinking animation */
@keyframes blink {
  0% { opacity: 1; }  /* Fully visible */
  100% { opacity: 0; } /* Invisible */
}


span.but {
  font-family: Arial, sans-serif;
  font-size: 11pt; /* Set font size */
  color: #ffeebb; /* Text color */
  padding: 1px 2px; /* Padding for button-like shape */
  border: 1px solid #999999; /* Smooth border */
  border-radius: 3px; /* Rounded corners */
  font-weight: bold; /* Bold text for better visibility */
  display: inline-block; /* Ensures proper spacing */
  text-align: center;
}
