html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}
:root {
    --navy: #061f38;
    --gold: #d7a33a;
    --cream: #f7f0e4;
    --white: #fff;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Lora', Georgia, serif;
    color: var(--white);
}

.launch-page {
    min-height: 100vh;
    background: linear-gradient(rgba(6,31,56,.78), rgba(6,31,56,.78));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

.content {
    max-width: 850px;
}

h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(3rem, 7vw, 5rem);
    margin: 0;
}

.tagline {
    color: var(--gold);
    font-size: 1.35rem;
    font-weight: 600;
    margin-top: .5rem;
}

.divider {
    width: 260px;
    height: 2px;
    background: var(--gold);
    margin: 2rem auto;
    position: relative;
}

    .divider::after {
        content: "◆";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -55%);
        color: var(--gold);
    }

h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1.25rem;
    line-height: 1.8;
}

.email {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--gold);
    font-size: 1.35rem;
    font-weight: 700;
}

.footer-note {
    margin-top: 2rem;
    font-size: 1.25rem;
    color: #e8e8e8;
}
.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}