body { 
    font-family: "Signika Negative", sans-serif; 
    
    padding: 0;
    margin: 0;
    
    background-color: grey;  
    height: 100%;
  }
  
  
  
  .pin-up {
    height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    
    background-color: green;
  }
  
  
  
  .content-wrap{
    position:relative;
    width: 333px;
    height: 222px;
    border-radius: 4px;
    background-color: limegreen;
    margin-right: 111px;
    margin-top: -10px;
  }
  
  .content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position:absolute;
    background-color: limegreen;
    border-radius: 4px;
    font-size: 30px;
    color: white;
  }
  
  
  
  .sideline {
    position: absolute;
    top: calc(50vh - 111px - 7px);
    left: calc(50vw + 0px);
    height: 222px;
    width: 3px;
    background-color: orange;
  
    transform: scaleY(0);
    transform-origin: top center;
    z-index: 1;
  }
  
  
  
  .text-wrap {
    height: 100vh;
    width: 333px;
    display: flex;
    
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    
    background-color: green;
  }
  
  .text {
    font-size: 30px;
    width: 100px;
    height: 50px;
    text-transform: uppercase;
    color: white;
    transform-origin: left center;
    transform: rotate(0.1deg)
  }
  
  
  
  .below {
    height: 100vh;
  
    display: flex;
    align-items: center;
    justify-content:center;
    background-color: white;
  }
  
  .below span {
    color: green;
    font-size: 30px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50vh);
  }
  
  
  
  .footer {
    height: 5vh;
    display: flex;
    align-items: center;
    justify-content:center;
    background-color: lightgrey;
  }
  
  
  .spacer {
    height: 20vh;
    display: flex;
    align-items: center;
    justify-content:center;
    background: white;
  }
  
  .spacer span {
    color: green;
    font-size: 30px;
  }