.homeImage {
    filter: invert(100%);
    width: 100%;

}

body {
    background-color:black;
    color: white;
    font-family: 'Ubuntu Mono', monospace;
}

.fillscreen {
    min-height: 100vh;
    padding-top: 10vh;
}

#header {
    z-index: 1000;
}

#logo {
    background-image: url(../images/birdhead-logo.jpg);
    height: 100%;
    background-position: center;
    filter: invert(100%);
    background-repeat: no-repeat;
    background-size: contain;
}

#continue {
    position: absolute;
    bottom: 10%;
}

.carousel-inner .carousel-item img {
    width: auto;
    max-height: 600px;
    margin: auto;
    object-fit: contain;
}

.event-item {
    width:60%;
    margin-left: auto;
    margin-right: auto;
}

.centered-button {
    margin: 0;
    position: sticky;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }