body {
  margin: 0;
  font-family: "Playwrite NZ Basic", cursive;
}

.HeaderPage {
  background-color: #ff0000;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between; 
  align-items: center;
  font-family:"Playwrite NZ Basic", cursive;
}

.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, h3 {
  font-family:"Playwrite NZ Basic", cursive;
  text-align: center;                      
  margin: 20px 0;                          
}

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

