* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
    
.eb-garamond-regular {
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.eb-garamond-bold {
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.metal-mania-regular {
  font-family: "Metal Mania", system-ui;
  font-weight: 400;
  font-style: normal;
}

header {
    text-align: center;
    color: white;
    background-color:#561023;
    padding: 2rem;      
}

h1, h2 {
  font-family: "Metal Mania", system-ui;
  font-weight: 400;
  font-style: normal;
}   

body {
  font-family: "EB Garamond", serif;
}

.container {
  display: flex;
  gap: 1.5rem;
  padding: 1rem;
}

.sidebar {
  width: 300px;
  flex: 0 0 300px;
  position: sticky;
  top: 1rem;
  max-height: calc(100vh - 2rem);
  overflow: auto;
  padding: 1rem;
  background: #561023;
  border-radius: 8px;
}

.content {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;
  max-width: 800px;
}

html {
  scroll-behavior: smooth;
}

section {
  padding: 2rem;
  margin-bottom: 2rem;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  scroll-margin-top: 1rem;
  position: relative;
}