/* Stylesheet for header */

header {
    margin-bottom: 0%;
    margin-top: 0%;
    width: 100%;
    padding: 1%;
    background-color: #10173E;
    color: white;
    position: fixed;
    top: 0;
    height: 50px;
    box-shadow: 0px 0px 5px black;
    z-index: 100;
}

.navbar {
    margin-bottom: 0%;
    margin-top: 0%;
    width: 100%;
    padding: 1%;
    background-color: transparent;
    color: white;
    position: fixed;
    top: 0;
    height: 50px;
    box-shadow: 0px 0px 5px black;
    transition: 500ms;
}

.header-content {
    padding: 3%;
    max-width: 1150px;
    margin: 50px auto;
    margin-bottom: 0%;
    margin-top: 0%;
    padding-bottom: 0%;
    padding-top: 0%;
}

header img {
    height: 50px;
    width: auto;
}

nav {
    float: right;
}

nav .header-button {
    color: aliceblue;
    border-radius: 10px;
    padding: 0px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    margin: 15px 5px;
    cursor: pointer;
    width: max-content;

}

nav .header-button:hover {
    color: lightgray;
}

nav .header-button-active {
    /*color: #e88463;*/
    text-decoration: underline;
}

.hero-image {
    padding: 0%;
    width: 100%;
    margin: 50px auto;
    margin-bottom: 0%;
    padding-bottom: 0%;
    padding-top: 0px;
    margin-top: 0px;
}

.space-hero-image {
    text-align: center;
    height: 450px;
}

.background-image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: auto;
}

.hero-image-text {
    text-align: center;
    position: absolute;
    font-size: 35px;
    top: 300px;
    width: 100%;
    left: 0%;
    color: white;
}

img {
    width: 100%;
    height: auto;
}

.button {
    color: aliceblue;
    border-radius: 10px;
    border-color: aliceblue;
    border-style: solid;
    border-width: 2px;
    padding: 13px 30px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 5px 10px;
    cursor: pointer;
    width: max-content;
}

.button:hover {
    color: lightgray;
    border-color: lightgray;
}


@media screen and (min-width: 666px) {
    nav .header-button {
        font-size: 15px;
        margin: 15px 25px;
    }

    nav .header-button-active {
        font-size: 15px;
        margin: 15px 25px;
    }
}

@media screen and (min-width: 1024px) {}