* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.7em;
}

a {
    color: #0077c0; 
    text-decoration: none;
}

h1 {
    padding-bottom: 20px;
	line-height: 1.5;
}

h2 {
    margin-top: 60px;
	line-height: 1.5;
}



h3 {
    margin-top: 60px;
	line-height: 1.5;
}


/* Määrab navigeerimisriba taustavärv ja teksti värv. */

#navbar {
    background: #0077c0; 
    color: #fff;
    overflow: auto;
	
}

#navbar a {
    color: #fff;
}

#navbar ul {
    float: right;
    list-style: none;
}

.container {
    margin: auto;
    max-width: 1100px;
    padding: 0 20px;
    overflow: auto;
}

.text-primary {
    color: #0077c0; 
}

.btn {
    display: inline-block;
    font-size: 18px;
    background: #0077c0; 
    color: #fff;
    padding: 0px 10px;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #004d8c; 
    color: #fff;
}

.bg-dark {
    background: #004d8c; 
    color: #fff;
}

.btn-light {
    background: #fff;
    color: #0077c0; 
}

.bg-primary {
    background: #0077c0; 
    color: #fff;
}

.py-30 {
    padding: 30px 0;
}

#navbar ul li {
    float: left;
}

#navbar img {
    width: 100px; 
    height: auto; 
    margin-right: 10px; /
}



#navbar ul li a {
    display: block;
    padding: 20px;
    text-align: center;
}

#navbar ul li a:hover,
#navbar ul li a.current {
    background: #004d8c; 
    color: #fff;
}

#navbar h1 {
    padding-top: 20px;
    float: left;
}

/* Määrab .showcase-le taustapilt, kõrgus ja keskjoondus. */
#showcase {
    background: url('img/fpl_theme.jpg') no-repeat center center/cover;
    height: 600px;
}

#showcase .showcase-content {
    color: #fff;
    text-align: center;
    padding-top: 170px;
}

#showcase .showcase-content h1 {
    font-size: 60px;
    line-height: 1.2em;
}

#showcase .showcase-content p {
    font-size: 20px;
    line-height: 1.5em;
}


/* Määrab jalusele teksti keskjoondus, täitemõõdud ja värv. */

footer {
    text-align: center;
    padding: 20px;
    background: #0077c0; 
    color: #fff;
	bottom: 0;
}

.clear {
    clear: both;
}


