@import url("./BasierCircle-Regular.otf");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'BasierCircle-Regular', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f9;
    color: #333;
  }
  
  header {
    background-color: #4a90e2;
    color: white;
    padding: 2rem 1rem;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-top: 1rem;
    flex-wrap: wrap;
  }
  
  nav ul li {
    margin: 0.5rem;
  }
  
  nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 0.4rem 0.8rem;
    border: 2px solid white;
    border-radius: 5px;
    transition: background 0.3s ease;
  }
  
  nav ul li a:hover {
    background-color: white;
    color: #4a90e2;
  }
  
  main {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
  }
  
  section {
    background: white;
    margin-bottom: 2rem;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
  }
  
  section:hover {
    transform: translateY(-5px);
  }
  
  h2 {
    color: #4a90e2;
    margin-bottom: 1rem;
  }
  
  footer {
    background: #4a90e2;
    color: white;
    text-align: center;
    padding: 1r
  }