/* CSS Document */
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Layout */
body {
  font-family: "Montserrat", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: #a01f23;
  color: #333;
}

.splash-container {
  text-align: center;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.logo {
  max-width: 200px;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.contact {
  font-size: 1rem;
  line-height: 1.5;
}

.contact a {
  color: #0066cc;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

