/* CSS Document */

html{
    background: rgba(0, 0, 0, 1);
}

html, body {
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    top: 0;
    bottom: 0;
    font-family: 'Montserrat';
    background: linear-gradient(to bottom, rgba(100, 100, 100, 1) 0%, rgba(255, 255, 255, 1) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

body{
	display: flex;
	flex-direction: column;
}

/* header */

header {
    padding: 0px 5%;
    background: rgba(150,0,0,.5);
	display: flex;
	flex-direction: column;
}

.top-bar1, .top-bar2{
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.logo h1{
    margin: 0px;
    font-size: 30px;
}

.logo h1 a{
    font-family: 'Times New Roman';
    color: rgba(255,255,255,.8);
    margin: 0px;
    font-weight: 600;
	text-decoration: none;
}

.top-nav {
    display: block;
    margin: 5px 0px;
}

.top-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
}

.top-nav a:hover {
    color: #afafaf;
    transition: 0.15s ease-in;
}

.top-nav ul {
    margin: 0;
    padding: 0;
}

.top-nav ul li {
    display: inline-block;
    margin-right: 30px;
}

.top-nav ul li:last-child{
    margin-right:0px;
}

@media only screen and (max-width: 890px) {
    
    header {
        padding: 0px 5px;
    }

    .logo h1{
        font-size: 20px;
    }

    .logo h2 {
        font-size: 14px;
    }
    
    .top-nav {
        margin-top: 2px;
    }

    .top-nav ul li {
        margin-right: 10px;
    }

}