﻿:root {
	--np-dark-blue: #024FA0;
	--np-light-blue: #93BEE6;
	--np-green: #549441;
}

body {
    padding-bottom: 20px;
}

p {
    font-size: 16px;
}

/*h2::first-letter {
    color:blue;
}*/

footer p {
    margin-left: 10px;
    font-size: 0.9em;
}

.circle-image {
    border-radius: 50px;
    display: block;
    width: 100px;
}

.spacer {
    border-width: 0;
    margin: 3em;
}

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

.navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
}

/* Here are presets for Project Euler badge size in members list*/
.projectEulerBadge {
    max-width: 135px;
    /*max-height: 40px;*/
}

/* Set widths on the form inputs since otherwise they're 100% wide */
input,
select,
textarea {
    max-width: 280px;
}

#icon {
    display: none;
}

#logo {
    display: block;
}

.join {
    font-family: sans-serif;
    margin: 0 auto;
    outline: none;
    display: block;
    height: 45px;
    width: 227px;
    border-radius: 6px;
    background: blue;
    color: white;
    box-shadow: 1px 1px 3px 0 rgba(0,0,0,.03);
    font-size: 18px;
    font-weight: 700;
    border: none;
    cursor: pointer;
}

/* Hide/rearrange for smaller screens */
@media screen and (max-width: 600px) {
    #icon {
        display: block;
        align-content: center;
    }

    #logo {
        display: none;
    }
}


/*on large screens, show the github corner link.  on smaller/monbile screens, just show the nav link*/
#githubNavLink{
    display:none;
}

@media only screen and (max-width: 1225px) {
    .github-corner {
        display: none;
    }
    #githubNavLink{
        display: inline;
    }
}


#map{
    height: 650px;
}


.db-avatar-small {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    border-color: #363635;
    border-width: 4px;
    border-style: solid;
    transition-property: all;
    transition-duration: 800ms;
}
.db-avatar-small:hover {
    filter: grayscale(0%);
}

/* https://codepen.io/maxdibaxrami/pen/dyGwzrZ */
.db-avatar {
    left: 50%;
    top: 50%;
    height: 200px;
    width: 200px;
    border-radius: 50%;
    border-color: #363635;
    border-width: 8px;
    border-style: solid;
    filter: grayscale(100%);
    transition-property: all;
    transition-duration: 800ms;
}
    .db-avatar:hover {
        transform: rotate(360deg);
        filter: grayscale(0%);
    }


