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

html, body {
  height: 100%;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  color: #ffffff;
  background-color: #111111;
  background-image: url('assets/hero-physio-steininger.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

main {
  text-align: center;
  padding: 2rem;
}

h1 {
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.name {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.05em;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.contact a:hover {
  opacity: 1;
}

footer {
  position: fixed;
  bottom: 1.5rem;
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.5;
}
