* {
    box-sizing: border-box;
    margin:0;
    padding: 0;
    background-color: bisque;

}

.title {
    font-size: large;
    font-weight: bold;
    display: flex;
    text-align: center;
    justify-content: center;
    margin: 10vh 0;
    flex-direction:column;
    align-items:center;
}

.body  {
    display: flex;
    justify-content: center;
}

#crane {
    max-height: 75vh;
    width:100%;
    object-fit: contain;
    position: fixed;
    bottom: 0;
  }

  @media only screen and (max-width: 400px)  {
    .title {
        margin: 30vh 1vh;
    }

  }
