.editorial-board {
    margin: 20px 0;
  }
  .editor {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 15px;
    border-bottom: 1px solid #eee;
  }
  .editor-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
  }
  .editor-details {
    flex: 1;
  }
  .editor-details h4 {
    margin: 0 0 10px 0;
    color: #2c3e50;
  }

.website-header {
  display: flex;
  align-items: center; /* Vertically center items */
  gap: 20px; /* Space between image and text */
 }
 .logo {
  width: 110px;
  height: 100px;
 }
 h1{
  color: #8B0000;
  -webkit-text-stroke: 2px black;
  text-shadow: 
    -1px -1px 0 #000,  
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000; /* Fallback for older browsers */
  font-family: Arial, sans-serif; /* Use bold fonts for better results */
  letter-spacing: 1px;
  transition: all 0.3s ease;
 }
 h1:hover {
  cursor: pointer;
 }