/* style.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
}

.container {
  background: #fff;
  padding: 2rem;
  border: 2px dashed #ccc;
  border-radius: 8px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.lead {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #666;
}

.contact h2 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #444;
}

address {
  font-style: normal;
  margin-bottom: 1rem;
  line-height: 1.4;
}

a {
  color: #0077cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.hours {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #555;
}
