body {
  margin: 0;
  font-family: Arial, "Bitcount Single";
}

.HeaderPage {
  background-color: #0165bd;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between; 
  align-items: center;
  font-family: 'Bitcount Single';
}


.HeaderLinks {
  display: flex;
  gap: 20px;
}

.HeaderLinks a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 32px; 
}

.logo img {
  height: 1em;       
  width: auto;
  vertical-align: middle;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 32px; 
}

.HeaderLinks a {
  position: relative;
  padding-bottom: 4px;
}

.HeaderLinks a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: white;
  transition: width 0.25s ease;
}

.HeaderLinks a:hover::after {
  width: 100%;
}
.logo img {
  transition: transform 0.25s ease, filter 0.25s ease;
}

.logo:hover img {
  transform: scale(1.15);
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.7));
}

h1, h2, h4 {
  font-family: 'Bitcount Single'; 
  text-align: center;                      
  margin: 20px 0;                          
}

.SmileyImage {
  display: block;           
  margin: 0 auto;           
  max-width: 80%;           
  height: auto;       
}

.highlighter {
  background-color: #0165bd;   
  color: black;           
  padding: 2px 4px;         
  border-radius: 2px;        
}

.ScottishLink {
    font-family: 'Bitcount Single'; 
    text-align: center;             
    color: black;
}
