/* SUPI brand colors */
:root {
  --terracotta: #C55A3C;
  --cream: #F8F5ED;
  --charcoal: #3B2C2A;
}

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

body {
  background-color: var(--cream);
  color: var(--charcoal);
  font-family: "Georgia", serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wrap {
  text-align: center;
  padding: 20px;
}

/* Large, centered SUPI logo */
.logo {
  width: 600px;       /* desktop size */
  max-width: 600px;
  margin: 0 auto 48px;
  display: block;
}

/* Responsive for mobile */
@media (max-width: 600px) {
  .logo {
    width: 300px;
    max-width: 300px;
  }
}

h1 {
  font-size: 40px;
  font-weight: bold;
  color: var(--terracotta);
  margin-bottom: 16px;
}

.contact {
  margin-top: 10px;
  font-size: 18px;
}

.contact a {
  color: var(--terracotta);
  text-decoration: none;
  font-weight: bold;
}

.contact a:hover {
  opacity: 0.8;
}