/* Fuente normal (400) */
@font-face{
  font-family: "Norse";
  src: url("../fonts/Norse.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap; /* recomendado */
}

/* Variante bold (700) si tienes un archivo separado */
@font-face{
  font-family: "NorseB";
  src: url("../fonts/Norsebold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

*
{
    margin: 0;
}

body
{
    background-color: #34292F;
}

h1
{
    font-family: 'Norse',sans-serif;
    color: #E28B00;
    text-align: center;
    font-size: 300px;
    padding-top: 100px;
}

h2
{
    font-family: 'Norse',sans-serif;
    color: #E28B00;
    text-align: center;
    font-size: 150px;
}

.header {
  overflow: hidden;
  background-color: #E28B00;
  padding: 20px 10px;
}

.header a {
    float: left;
    color: black;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    font-size: 34px; 
    line-height: 25px;
    border-radius: 4px;
    font-family: 'NorseB',sans-serif;
    margin-left: 10px;
    margin-right: 10px;
}

.header a.logo {
  font-size: 50px;
  font-weight: bold;
  font-family: 'NorseB',sans-serif;
}

.header a:hover {
  background-color: #ffbb3d;
  color: black;
  font-family: 'NorseB',sans-serif;   }

.header a.active {
  background-color: #34292F;
  color: white;
}

.header-right {
  float: right;
}

@media screen and (max-width: 500px) {
  .header a {
    float: none;
    display: block;
    text-align: left;
  }
  
  .header-right {
    float: none;
  }
}