#image-container {
    position: relative;
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    min-height: 400px;
    overflow: hidden;
}

#banner-image {
    display: none;
    width: 100%;
    height: auto;
}

#overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
}

#text-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    text-align: center;
}

#rendered-text {
    font-family: "Montserrat", sans-serif;
    font-size: 36px;
    padding: 10px;
}

#text-container .highlight {
    background-color: rgba(255, 255, 0, 0.75);
    display: inline;
    padding: 0 10px;
}

#controls {
    text-align: center;
    margin-top: 20px;
}

#controls label {
    margin-right: 10px;
}

#unsplash-search {
    cursor: pointer;
}