/*
.hero-image {
    width: 100%;
    height: 100%;
    display: block;
    margin: 0;
    padding: 0;
    overflow: hidden;
    object-fit: fill;
}
*/

#hero-image-container {
    padding: 0;
}

.hero-heading {
    size: 50px;
}

.hero-image {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/images/keyssar_hbs_072_1280.jpg");
    background-size: auto;
    height: 100%;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-img-container {
    height: auto;
}

.hero-img-container img {
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

.hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

.hero-text input {
    height: 5vh;
}

.hero-text button {
    border: none;
    outline: 0;
    display: inline-block;
    height: 5vh;
    padding: 10px 15px;
    color: black;
    background-color: #ddd;
    text-align: center;
    cursor: pointer;
}

.hero-text button:hover {
    background-color: #555;
    color: white;
}