
@charset "utf-8";

/* - - - - - - - - - - - - - - - - - - GENERAL - - - - - - - - - - - - - - - - - - */

html {
    scroll-behavior: smooth;
}

body {
	background-color: #123;
    color: #fff;
    font-family: 'Lato', sans-serif;
}

a{
    color:#ddd;
    cursor:pointer;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

a:hover{
    color:#0ae !important;
    text-decoration: none;
}

/* - - - - - - - - - - - - - - - - - - HEADER - - - - - - - - - - - - - - - - - - */

header{
    position:fixed !important;
    top:0;
    left:0;
    z-index: 150;
    background-color: rgba(0,0,0,0.4);
    border-bottom: 1px solid #ddd;
}

.navbar-fixed-top.scrolled {
    opacity: 0.8 !important;
    padding:0 1rem;
    transition: padding 200ms linear;
}

.navbar{
    width:100%;
    padding: .1rem 1rem;
    justify-content: space-between;
}

.navbar-brand{
    font-size: 28px;
    max-width: 40vw;
    font-family: 'Raleway', Arial, sans-serif;
    color:#ddd !important;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.navbar-brand:hover{
    color:#00a7ca !important;
}

h1 br {
	line-height: 64px;
}

/* - - - - - - - - - - - - - - - - - - MAIN - - - - - - - - - - - - - - - - - - */

#main{
    background-color:transparent;
    padding-top:17vh;
    padding-bottom: 215px;
    min-height:100vh;
}


@media screen and (max-width: 767px) {
    .navbar-brand{
        font-size: 20px;
    }
    h1{
	  font-size: 1.5rem;
    }
    h1 br {
	line-height: 50px;
	}
}

@media screen and (max-width: 320px) {
    #main{
        padding-top:20vh;
    }
}
