/* Global Styles */
:root {
    --dark-color: #333;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Comfortaa', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(to right, #232526, #414345);
}

a {
    color: #ededed;
    text-decoration: none;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.0rem 2rem;
    position: fixed;
    z-index: 1;
    width: 100%;
    top: 0;
    /* border-bottom: solid 1px var(--primary-color); */
    /* border: solid 1px red; */
    opacity: 0.9;
}

.navbar ul {
    display: flex;
}

.navbar a {
    color: #fff;
    padding: 0.45rem;
    margin: 0 0.25rem;
}

.navbar a:hover {
    color: var(--primary-color);
}

.navbar .welcome span {
    margin-right: 0.6rem;
}

.nav-normal {
    display: grid
}


.bg-dark {
    background: var(--dark-color);
    color: #fff;
}


.landing {
    position: relative;
    background: url('../img/road.jpg') no-repeat center center/cover;
    height: 100vh;
}

.landing2 {
    position: relative;
    background: url('../img/bike.jpg') no-repeat center center/cover;
    height: 100vh;
}

.landing-inner {
    color: #fff;
    height: 100%;
    width: 80%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Text Styles */
.x-large {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.small {
    font-size: 1rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

/* Overlay */
.dark-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.brand-logo {
    height: 65px
}

/*============================================================ 
	Responsive Styles
 ============================================================*/

/* For Mobile */
@media screen and (max-width: 540px) {
    .view {
        width: 400px;
    }

    .x-large {
        font-size: 2.75rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .lead {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .small {
        font-size: 0.85rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }

}


#footer {
    position: fixed;
    height: 20px;
    bottom: 0px;
    /* left: 0px; */
    right: 20px;
    margin-bottom: 5px;
    opacity: 0.3;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#footer p {
    font-size: 0.75rem;
    color: #fff;
}

.footer-social {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 2rem;
    /* margin: 10px */
}

.footer-social a {
    color: #fff;
    padding: 0.15rem;
    margin: 0 0.25rem;
}

/* For Tablets */
@media screen and (min-width: 540px) and (max-width: 780px) {
    .view {
        width: 600px;
    }
}