@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap');

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-image: url('back.PNG');
  font-family: Instrument Sans;
  background-color: black;
  color: white;
  background-repeat: no-repeat;
}


/* HEADER */
.header {
  text-align: center;
  padding: 2rem 1rem 1rem;
}

.logo {
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0;
}


/* MAIN CONTAINER */
.container {
  max-width: 1100px;
  width: 100%;
  margin: auto;
  padding: 1rem;
}

/* PROJECT */
.project-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}

.project-header h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin: 0;
}

.status {
  color: #f9d206;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
}

/* DESCRIPTION BLOCK */
.description {
  margin-top: 1rem;
  background: #e5e5e5;
  padding: 0.7rem;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.6;
}

.description p{
  color: black;
}

/* FOOTER */
.footer {
  margin-top: 2rem;
}

.footer p {
  text-decoration: none;
  color: white;
  font-weight: 600;
  word-break: break-all;
}

.footer a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  word-break: break-all;
}

/* MOBILE */
@media (max-width: 600px) {
  .project-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
