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

body, html {
  height: 100%;
  font-family: 'Caveat', cursive; /*new default font */
}

body {
  background: url("FANCY FOX BG LANDING PAGE.png") no-repeat center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #333;
}

.logo {
  max-width: 250px;
  width: 60%;
  height: auto;
}

.coming-soon {
  font-size: 2.5em;
  margin: 15px 0;
  color: #444;
  font-weight: 700; /* bold for emphasis */
}

.contact {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 1.2em;
}

.social-icons {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.social-icons a {
  font-size: 2em;
  color: #444;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #e67e22;
}

.contact a.form-link,
.contact a.email-link {
  font-size: 1.4em;
  font-weight: 400;
  color: #444;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact a.form-link:hover,
.contact a.email-link:hover {
  color: #e67e22;
}

.location {
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2em;
  font-weight: 400;
  color: #444;
  text-align: center;
}

@media (max-height: 500px) {
  .location {
    display: none;
  }
}
