@import url('https://fonts.cdnfonts.com/css/gilroy-bold');
@import url('https://fonts.cdnfonts.com/css/gilroy');

* {
  box-sizing: border-box;
}

body {
  font-family: 'Gilroy', -apple-system, sans-serif;
  background: #252525;
  color: #ffffff;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem;
  width: 100%;
}

header {
  border-bottom: 1px solid rgba(242, 9, 13, 0.2);
  padding: 1rem;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.site-title {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-title span {
  font-weight: 700;
  font-size: 1.25rem;
}

nav {
  margin-top: 1rem;
}

nav a {
  color: #ffffff;
  margin-right: 1rem;
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
}

img {
  height: 40px;
  filter: brightness(0) invert(1);
}

footer {
  margin-top: auto;
  padding: 2rem 1rem;
  border-top: 1px solid rgba(242, 9, 13, 0.2);
  font-size: 0.9rem;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

a {
  color: #ffffff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
}

