@font-face {
    font-family: Anton;
    src: url("assets/fonts/Anton-Regular.ttf");
  }
@font-face {
    font-family: Eagle;
    src: url("assets/fonts/EagleLake-Regular.ttf");
  }
@media (max-width: 768px) {
    .section {
      width: 100%;
    }
  }
  html {
    scroll-behavior: smooth;
  }
  * {
    box-sizing: border-box;
  }
  body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 10px; 
    padding: 10px;
    font-family: "Anton";
    font-size: 14px;
    font-weight: 50;
    line-height: 1;
    letter-spacing: 1px;
    color: #000d32;
  }
  .container {
    max-width: 1440px;
    margin: 0 auto;
  }
  .nav-list {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .nav-link {
    font-family: "Eagle";
    padding: 5px;
    line-height: 50px;
    transition: 0.3s;
    color: #000d32;
  }
  .nav-link:hover {
    color: #7c2ced;
  }
  .link:hover {
    color: #7c2ced;
  }
  .section-item a {
    color: #58665a;
    text-decoration: none;
    transition: color 0.5s;
  }
  .section-item a:hover {
    color: #4d2323;
  }
  .section-title {
    font-family: "Eagle";
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #04370b;
  }
  .main-container {
    display: flex;
    flex-wrap: wrap;
  }
  .section {
    width: 50%;
}
  .simple-list {
    padding: 10px;
  }
  .footer-list {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .footer-item {
    font-family: "Eagle";
    padding: 5px;
    line-height: 50px;
    transition: 0.3s;
    color: #000d32;
  }
