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

:root {
  --color-primary: #d0afab;
  --color-secondary: #1b1b1b;
}

html,body {
  height: 100%;
}

html {
  /*font-size: calc(100vw / 1920 * 10);*/
  font-size: 16px;
}

body {
  background-color: var(--color-primary);
  color: var(--color-secondary);
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.cc-app {
  height: 100%;
}

.cc-hero {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.cc-hero_wrapper {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;

  width: inherit;
  height: inherit;
}

.cc-hero_brand {
  max-width: 30rem;

  & svg {
    width: 100%;
    height: auto;
    fill: var(--color-secondary);
  }
}

@media screen and (min-width: 45em) {
  .cc-hero_brand {
    max-width: 35rem;
  }
}

@media screen and (min-width: 60em) {
  .cc-hero_brand {
    max-width: 45rem;
  }
}

.cc-hero_message {
  text-align: center;
}

.cc-hero_media {
  position: fixed;
  object-fit: contain;
  z-index: 999;
  pointer-events: none;
  transition: all 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate(0%, 0%) scale(0.5);
  transform-origin: center;
}

.is-hidden {
  visibility: hidden;
}
