#homeLogo {
  width: 45%;
}

.vampEvent {
  width: fit-content;
}

.vampEvent > img  {
  height: 900px;
  width: auto;
  margin: 30px;
}

@media only screen and (max-width: 1000px) {

  #homeLogo {
    width: 85%;
  }
  
  .vampEvent > img  {
    height: auto;
    margin-bottom: 40px;
    width: -moz-available;          /* WebKit-based browsers will ignore this. */
    width: -webkit-fill-available;  /* Mozilla-based browsers will ignore this. */
    width: fill-available;
  }
  
}