/********************************************/
/*************** Global Style ***************/
/********************************************/


html, body {
    box-sizing: border-box;
    font-size: 16px;
    height: 100%;
    margin: 0;
}

*, *::before, *::after {
    box-sizing: inherit;
  }

body {
    background-color: #1f1f1f;
    color: #fff;
    font-family: itc-avant-garde-gothic-pro, sans-serif;
    font-weight: 300;
    font-style: normal;
    text-rendering: optimizeLegibility;
    margin: 0 4.5rem;
    display: flex;
}

a {
    color: #fff;
}

/********************************************/
/************* Global Elements *************/
/********************************************/


/***** Typography *****/

.font-logo {
    font-weight: 700;
    font-size: 6rem;
    letter-spacing: -2px;
    color: #262626;
}

.font-logo.active {
    color: #ffffff;
}

.font-logo.active span {
    color: #fcc144;
}

.font-heading, h1 {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 2.25rem;
}

.font-body, p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5rem;
}

/* Utilities */

em {
    font-style: italic;
    font-weight: 500;
}

.underline {
    text-decoration-line: underline;
    text-decoration-color: #fcc144;
    text-decoration-thickness: 0.125rem;
}

.grid-12 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 2.25rem;
    align-content: start;
}

/* Coming Soon Page */
section.brand-panel {
    grid-column: 2 / 7;
}

section.intro-content {
    grid-column: 8 / 12;
    display: flex;
    flex-direction: column;
}

.text-wrap {
    flex-grow: 1;
    align-content: center;
}

.label {
    display: block;
    margin-bottom: .25rem;
}

.email-contact {
    font-size: 1.25rem;
    font-weight: 500;
}

.contact-cta {
    justify-content: right;
    display: flex;
}

.contact-cta div {
    width: 13.25rem;
}

#object1, #object2, #object3, #object4 {
    transition: all 0.3s ease;
}

@media screen and (min-width: 1px) and (max-width: 400px) {
    body {
        margin: 2rem;
    }
    .font-logo {
        font-size: 4rem;
    }
    .font-heading, h1 {
        font-size: 1.5rem;
    }
    .brand-panel {
        margin: 2rem 0;
    }
}

@media screen and (min-width: 401px) and (max-width: 767px) {
    body {
        margin: 4rem 2rem;
    }
    .font-logo {
        font-size: 4rem;
    }
    .font-heading, h1 {
        font-size: 1.5rem;
    }
    .brand-panel {
        margin: 2rem 0;
    }
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
    body {
        margin: 1rem 4.5rem;
    }
    .font-logo {
        font-size: 8rem;
    }
    .font-heading, h1 {
        font-size: 1.5rem;
    }
    .brand-panel {
        margin: 4rem 0;
    }
}

@media screen and (min-width: 1px) and (max-width: 1200px) {
    body {
        align-items: flex-start;
    }
    .contact-cta {
        justify-content: left;
        display: flex;
        margin-top: 4rem;
        margin-bottom: 2.25rem;
    }
    .grid-12 {
        display: flex;
        flex-direction: column;
    }
    .contact-cta div {
        width: 100%;
    }
}

@media screen and (min-width: 1201px) {
    body {
        align-items: center;  /* Resets to center or any other desired alignment */
    }
}