@font-face {
  font-family: 'InstrumentSans';
  src: url('../fonts/InstrumentSans.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #1d1d1d;
  background-image: url('../images/background-gradient.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top;
  margin: 0;
  font-family: 'InstrumentSans', 'Roboto', 'sans-serif';
  color: #fff;
  max-width: 1000px;
  font-size: 18px;
  margin: auto;
}

.container {
  padding: 50px;
  border: 4px solid #5d5d5d;
  border-radius: 10px;
}

a {
  color: #e9a410;
}

h1 {
  font-size: 22px;
  font-weight: bold;
}

h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
}

p {
  white-space: pre-line;
}

.logo {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.logo img {
  width: 200px;
  max-height: 250px;
  object-fit: cover;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.date {
  color: #008b9b;
  font-size: 18px;
  margin: 0;
}
/* Container */
.index-box {
  background: rgba(60, 60, 60, 0.9);
  border-radius: 20px;
  padding: 10px 20px;
  max-width: 600px;
  margin: 20px auto;
  color: white;
}

/* Title */
.index-box h2 {
  margin-bottom: 20px;
  font-size: 24px;
}

/* List reset */
.index-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* List items */
.index-box li {
  margin: 15px 0;
}

/* Links */
.index-box a {
  color: white;
  text-decoration: none;
  display: block;
  transition: opacity 0.2s ease;
}

/* Hover effect */
.index-box a:hover {
  opacity: 0.7;
}

.legal-text {
  margin-bottom: 50px;
}

/* Mobile / small screens */
@media (max-width: 1000px) {
  body {
    font-size: 16px;
  }

  .container {
    border: none;
    padding: 20px 20px 50px 20px;
  }

  h1 {
    font-size: 22px;
  }
  h3 {
    font-size: 20px;
  }

  .date {
    font-size: 16px;
  }
}
