
@font-face {
    font-family: "Apercu-Condensed";
    src: url("assets/apercu-regular.otf")
        format("opentype"),
        url("assets/apercu-light.otf")
        format("opentype"),
        url("assets/apercu-light-ital.otf") format("opentype");
}


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

body {
    font-family: "Apercu-Condensed", sans-serif;
    width: 100vw;
    height: 100vh;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #BAAAFE;
}

.placeholder {
    width: 40%;
    height: 40%;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: skewY(-8deg);
    min-width: 500px;
}

h1 {
    transform: none;
    text-align: center;
    text-transform: uppercase;
    font-size: 96px;
    letter-spacing: 1%;
    font-weight: 300;
}

span {
    font-style: italic;
}

.footer {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    display: flex;
    flex-direction: row;
    font-family: "Apercu-Condensed", Arial, Helvetica, sans-serif;
  }
  
  .f-section {
    flex: 1;
    display: flex;
    align-items: center;
    text-align: center;
  }
  
  .f-section.title {
    flex: 2;
  }
  
  
  h4 {
    text-transform: uppercase;
    font-size: 24px;
    margin:0;
    font-family: "Apercu-Condensed", Arial, Helvetica, sans-serif;
    font-weight: 400;
  }
  
  
  .logo-text h4, .c h4 {
    font-size: 15px;
  }
  
  .title {
    justify-content: center;
  }
  
  .c {
    justify-content: flex-end;
  }
  
  .lockup {
    justify-content: flex-start;
  }
  
  .logo {
    position: relative;
  }
  
  @keyframes boxmove {
    0% {height: 47px; top:0px;}
    25% {height: 32px; top: 45px}
    50% {height: 32px; top: 45px}
    75% {height: 47px; top:0px;}
    100% {height: 47px; top:0px;}
  }
  
  .box {
    border: 1px solid #000;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -5%);
    height: 47px;
    width: 74px;
    animation-name: boxmove;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-delay: 1s;
  }
  
  .logo-text {
    padding-left: 5px;
    padding-right: 5px;
    display: block;
    width: 100%;
  }

@media screen and (max-device-width:570px), screen and (max-width:570px) {
    h1 {
        font-size: 70px;
    }

    .placeholder {
        width: 80%;
        min-width: 380px;
    }

    h4 {
        font-size:21px;
    }

    .f-section.title {
        padding: 0 10px;
    }
}