@font-face {
    font-family: 'Title'; /* Dê o nome que você quiser aqui */
    src: url('../assets/PressStart2P-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Body'; /* Dê o nome que você quiser aqui */
    src: url('../assets/Inter.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Courier New", monospace;
  background-color: #050505;
  color: #eaeaea;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Title';
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #050505;
  border-bottom: 2px solid #111;
  z-index: 100;
}

.nav-container {
  max-width: 100vw;
  margin: 0;
  padding: 1rem 0 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: #1e90ff;
  font-weight: bold;
  margin-left: 50px;
}

nav {
  margin-right: 50px;
}

nav a {
  color: #eaeaea;
  text-decoration: none;
  margin-left: 2rem;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #1e90ff;
  transition: width 0.2s;
}

nav a:hover::after {
  width: 100%;
}
