@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

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

html, body {
  height: 100%;
}

body {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  background: url('bg.jpg') no-repeat center center/cover;
}

body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}

.container {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
  padding: 20px;
}

.logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 30px;
  background: rgba(255, 255, 255, 0.8);
  padding: 10px;
  border-radius: 8px;
}

h1 {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 2px;
}
