* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  height: 100vh;
  background-image: url("image.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

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

.buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.btn {
  padding: 15px 30px;
  background: white;
  color: black;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  border-radius: 4px;
}

.btn:hover {
  opacity: 0.8;
}

.social {
  display: flex;
  gap: 20px;
  font-size: 14px;
  margin-bottom: 10px;
}

.social a {
  color: white;
  text-decoration: none;
}

.email {
  color: white;
  font-size: 12px;
}