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

body {
  height: 100vh;
  background: url("bg.jpg") center/cover no-repeat;
  font-family: 'Josefin Sans', sans-serif;
}

/* Center everything */
.page {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  background: rgba(0,0,0,0.25);
  padding: 40px 20px;   /* adds breathing space */
}

/* Logo */
.logo {
  width: 300px;
  margin-bottom: 45px;
}

/* Tagline */
.tagline {
  font-size: 30px;
  letter-spacing: 3px;
  margin-bottom: 15px;
  opacity: 0.9;
}

/* Coming Soon */
h1 {
  font-size: 42px;
  font-weight: bold;
  letter-spacing: 4px;
  margin-bottom: 40px;
}

/* Contact section */
.contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 16px;
  letter-spacing: 1px;
}

/* Links */
.contact a {
  color: white;
  text-decoration: none;
  opacity: 0.9;
  transition: 0.3s;
}

.contact a:hover {
  opacity: 1;
}