@font-face {
    font-family: 'YourFontName'; /* Provide a name for the font */
    src: url('fonts/RobotoMono-VariableFont_wght.ttf') format('woff2'), /* Define font file path and format */
}

body {
    font-family: 'YourFontName', sans-serif; /* Use the imported font */
    background-color: #e8ffff;
}



/* Resetting default styles */
body {
    margin: 0px 100px;
    padding: 0px 100px;
}

/* Global styles */
body {
    font-family: 'YourFontName', sans-serif; /* Use the imported font */
    line-height: 1.6;
    margin-bottom: 30px;
}

  a i {
    font-size: 24px; /* Adjust size as needed */
    color: black; /* Set icon color to black */
    margin: 0 10px; /* Optional spacing */
    transition: color 0.3s ease; /* Add hover effect */
  }

  a i:hover {
    color: gray; /* Optional hover color (e.g., dark gray) */
  }
a {
    text-decoration: none;
    color: black;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
}

.header-container h1 {
    font-weight: 300;
    text-transform: uppercase;
    font-size: 28px;
}


nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 23px; /* Adjust the margin between list items */
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 200;
}

nav ul li:first-child {
    margin-left: 0; /* Remove margin for the first item */
}

nav ul li a {
    display: flex;
    align-items: center; /* Vertically center the content */
}

footer p {
    font-size: 8px;
    text-transform: uppercase;
    font-weight: lighter;
} 

footer {
    text-align: center;
    margin-top: 60px;
    padding-bottom: 30px;
}

footer p {
    margin-bottom: 50px;
}

@media (max-width: 1264px) {

  .header-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  nav ul {
      display: flex;
      justify-content: center; /* Horizontally center the items */
      padding: 8px 0px 20px 10px;
      margin: 0;
  }

  nav ul li {
      margin: 0 10px; /* Adjust spacing between items */
      font-weight: lighter;
      font-size: 8px;
  }

  .header-container h1 {
      font-weight: 400;
      text-transform: uppercase;
      font-size: 16px;
      margin-bottom: 10px; /* Space between the title and nav */
  }
}
{}




