




/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
* {
  margin: 0;
}

/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}

body {
  /* 4. Add accessible line-height */
  line-height: 1.5;
  /* 5. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 6. Improve media defaults */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input, button, textarea, select {
  font: inherit;
}

/* 8. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
  text-wrap: pretty;
}
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

/*
  10. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

body {
    font-family: Noto Serif
;
    font-size: 1.1rem;
    
}



h2, h1 {
    text-decoration: underline;
    text-underline-offset: 0.2rem;
    font-weight: bold;
    
    text-decoration-color: #ed3232 
}
h2 {
  color: #1f1515 ;
}
h1 {
  text-align: center;
}




.normal-container {
    padding: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    button {
        border: none;
        background-color: #B20100  ;
        color: white;
        padding: 0.5rem 0.6rem;
        border-radius: 0.8rem;
    }
    h2 {
      position: relative;
      color: #B20100;
    }
    h2::after {
      content: "";
      width: 2rem;
      height: 1px;
      position: absolute;
      right: 0;
      bottom: 50%;
      transform: translateX(30%);
      background-color: #c83b3b;

    }
     h2::before {
      content: "";
      width: 2rem;
      height: 1px;
      position: absolute;
      left: 0;
      transform: translateX(-30%);
      bottom: 50%;
      background-color: #c83b3b;

    }
    
}

footer {
  background: #1f1515;
background: linear-gradient(90deg,rgba(31, 21, 21, 1) 0%, rgba(178, 1, 0, 1) 96%);
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
color: rgb(223, 223, 223);
padding: 2rem;
gap: 1rem;
div {
  display: flex;
  gap: 1rem;
}
}


header {
    display: flex;
    position: fixed;
    z-index: 100;
    width: 100vw;
    height: 13vh
    ;
    background-color: #320001;
    justify-content: space-between;
    nav {
        align-self: center;
        img {
            width: 70%;
            align-self: stretch;
            height: 50%;
            
        }
    }
    
    .logo {
      height: 100%;
      /* width: 80%; */
      max-width: 80%;
       

    }
    
}

/* NAV BAR */
.nav-list {
  display: flex;
  list-style: none;
  background-color: rgb(186, 186, 186);
  position: fixed;
  align-items: center;
  width: 100vw;
  padding: 1rem;
  gap: 1rem;
  text-align: center;
  top: 0;
  transform: translateY(-100%);
  transition: transform 600ms;
  height: 15vh;
  font-size: 1.3rem;

  

}
.nav-list.active {
  transform: translateY(0);
}
.cross {
  margin-right: auto;
}
a {
  text-decoration: none;
  color: #320001;
}



.main-content-wrapper::before {
    content: "";
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0;
    background-color: rgb(107, 76, 76);
    z-index: 10;
    opacity: 0;
    pointer-events: none;
}
.main-content-wrapper.active::before {
    opacity: 0.5;
}
.main-content-wrapper {
    pointer-events: all;
}
.main-content-wrapper.active {
    pointer-events: none;
}

@media screen and (min-width:700px) {
  .normal-container {
    padding: 5% 9%;
  }
  
}
button, a {
  cursor: pointer;
}
a {
  width: max-content;
  
}