:root {
    --accent-color: #eb7e29;
}

.logo-img {
    max-height: 64px!important;
    padding: 15px 10px!important;
}

html, body {
    margin: 0;
    height: 100%;
    width: 100%;
    background-color: #030408;
    color: white;
}

header {
    background-image: url(img/bg/star-2211589.jpg);
    background-size: cover;
    background-position: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}

nav {
    z-index: 100;
    background-color: #00000081;
}

.header-container {
    position: absolute;
    height: 100%;
    min-width: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.header-container .container h1 {
    margin-top: 0;
}

.transparent_button {
    background: none;
    color: var(--accent-color);
    font-size: 1.25em;
    padding: .5em 1em .5em 1em;
    border: 2px var(--accent-color) solid;
    cursor: pointer;
    transition: .2s ease;
}

.transparent_button:hover {
    background: var(--accent-color) !important;
    color: rgb(6, 0, 29);
}

.parallax img {
    max-width: 250%;
}

/* label focus color */
.input-field input[type=text]:focus + label, .input-field input[type=email]:focus + label, .input-field textarea:focus + label {
    color: var(--accent-color) !important;
}

.input-field input[type=text]:focus, .input-field input[type=email]:focus, .input-field textarea:focus {
    border-bottom: 1px solid var(--accent-color) !important;
    box-shadow: 0 1px 0 0 var(--accent-color) !important;
}

@media screen and (max-width: 670px) {
    .flex-switch {
        display: flex;
        flex-direction: column;
    }
    .website-description {
        order: 2;
    }
    .logo-img {
        max-height: 56px!important;
        padding: 14px 10px!important;
    }
}