@font-face {
  font-display: swap;
  font-family: 'Imperial Script';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/imperial-script-v8-latin-regular.woff2') format('woff2');
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body.holding {
  background-color: #E3FFA6;
}

.holding-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  min-height: 100dvh;
  gap: 100px;
  padding: 40px 24px;
}

.holding-center {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 32px;
  width:100%;
}

.holding-logo {
  width: 80%;
  height: auto;
  display: block;
}

@media (min-width: 768px) {
  .holding-logo {
    width: 50%;
  }
}

.holding-tagline {
  margin: 0;
  color: #C2AE00;
  font-family: 'Imperial Script', cursive;
  font-size: clamp(2.5rem, 4vw, 100rem);
}

.holding-socials {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-bottom: 16px;
}

.holding-socials a {
  color: #C2AE00;
  font-size: 1.5rem;
  line-height: 1;
  text-decoration: none;
}

.holding-socials a:hover {
  opacity: 0.75;
}