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

html, body {
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: url("../images/background.jpg") no-repeat center center fixed;
  background-size: cover;
  position: relative;
  color: white;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.5); 
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.center-box {
  padding: 2rem;
}

.logo {
  width: 200px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 1rem;
}

h1 {
  font-size: 1rem;
  font-weight: 100;
  letter-spacing: 1px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

footer {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.8;
}
