/* Reset and base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a{
    color: white;
    text-decoration: none;
}

a:hover{
    text-decoration: underline;
}

body {
  font-family: 'Arial Black', Arial, sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.4;
  padding: 30px 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Header */
#header {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-bottom: 40px;
  text-transform: uppercase;
  font-size: 1.1rem;
  letter-spacing: 2px;
  font-weight: 900;
  border-bottom: 2px solid #fff;
  padding-bottom: 15px;
  width: 100%;
  max-width: 1000px;
  cursor: default;
}

#header p:hover {
  color: #ccc;
  cursor: pointer;
}

/* Main content */
div:nth-of-type(2) {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  margin-top: 40px;
}

div:nth-of-type(2) img {
  width: 150px;
  height: auto;
}

h1 {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: #fff;
}

h2, h3 {
  font-size: 1rem;
  color: #ccc;
}

#more{
    padding-top: 20px;
    text-align: center;
}

/* Footer */
#footer {
  margin-top: auto;
  color: #777;
  font-size: 0.85rem;
  text-align: center;
  user-select: none;
  max-width: 1000px;
  width: 100%;
}

/* Mobile responsive header */
@media (max-width: 768px) {
  #header {
    gap: 15px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    flex-wrap: wrap;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  #header {
    gap: 8px;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    justify-content: space-around;
  }
  
  #header p {
    flex: 1;
    text-align: center;
    min-width: 0;
  }
  
  body {
    padding: 20px 10px;
  }
}
