/*
 * Globals
 */

/* Links */
a,
a:focus,
a:hover {
    color: #fff;
}

/* Custom default button */
.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
    color: #333;
    text-shadow: none;
    /* Prevent inheritance from `body` */
    background-color: #fff;
    border: .05rem solid #fff;
}


/*
 * Base structure
 */

html,
body {
    height: 100%;
    background-color: #010101;
    background-repeat: no-repeat;
    background-image: url(../img/back.jpg);
    background-position: 60% center;
    background-size: cover;

}

body {
    display: -ms-flexbox;
    display: flex;
}


.cover-container {
}

.logo {
    width:80%;
    max-width: 400px;

    max-height: 30vh;
    margin-bottom: -4.2%;
}

.logo-text {
    font-size: 4.6vw;
    color: #d3b77b;
    font-family: 'Montserrat', sans-serif;

    font-weight: 200;
    font-style: normal;


}

.inner {}


#eclipse {
    margin-top: calc(100vh / 4);
}



.social-icons {
    margin: 10px;
    text-align: center;

}

.social-icons>a {
    display: inline-block;
    padding: 5px;

}

.social-icons>a>img {
    width: 32px;
    -webkit-transition: all 0.2s 0s ease;
    -moz-transition: all 0.2s 0s ease;
    -o-transition: all 0.2s 0s ease;
    transition: all 0.2s 0s ease;
}

.social-icons>a:hover>img {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 0.6;
}

@media (max-height: 500px) {
    .logo-text {

        font-size: 25px;
    }

    .social-icons>a>img {
        width: 24px;

    }

    .social-icons {
        margin: 8px;

    }

}

@media (min-height: 500px) and (min-width: 768px) {
    .logo-text {

        font-size: 35px;
    }
}

@media (min-width: 768px) {

    body {
        background-position: right center;
    }

}




/*
 * Header
 */
.masthead {
    margin-bottom: 2rem;
}

.masthead-brand {
    margin-bottom: 0;
}

.nav-masthead .nav-link {
    padding: .25rem 0;
    font-weight: 700;
    color: rgba(255, 255, 255, .5);
    background-color: transparent;
    border-bottom: .25rem solid transparent;
}

.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
    border-bottom-color: rgba(255, 255, 255, .25);
}

.nav-masthead .nav-link+.nav-link {
    margin-left: 1rem;
}

.nav-masthead .active {
    color: #fff;
    border-bottom-color: #fff;
}

@media (min-width: 48em) {
    .masthead-brand {
        float: left;
    }

    .nav-masthead {
        float: right;
    }
}


/*
 * Cover
 */
.cover {
    padding: 0 1.5rem;
}

.cover .btn-lg {
    padding: .75rem 1.25rem;
    font-weight: 700;
}

/*
 * Footer
 */
.mastfoot {
    color: rgba(255, 255, 255, .5);
}