:root {
    --color-1: rgb(255, 255, 255);
    --color-2: rgb(25, 24, 28);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
    background-color: var(--color-2);
    color: white;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 50px;
    background-color: var(--color-2);
    color: #fff;
    padding: 10px 0;
    display: none;
    z-index: 1000;
    align-items: center;
    justify-content: right;
}

.navbar-place {
    height: 45px;
}

.navbar > a {
    margin-left: 15px;
    margin-right: 15px;
    text-decoration: none;
    color: white;
    font-size: 1.1em;
}

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

.navbar > a > img {
    position: absolute;
    top: 7px;
    left: 15px;
    height: 50px;
}

#content-1 {
    scroll-margin-top: calc(65px + 6vh);
}

.hero-container {
    position: relative;
    height: 100vh;
    background-image: url('spacehero.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-box {
    position: relative;
}

.hero-buttons {
    position: relative;
    top: 100px
    left: 0px
}

.home-content {
    height: 60vh;
    padding: 15px;
    margin-top: 8vh;
    background-color: var(--color-2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-content > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.big-padding {
    padding: 10vw;
}

.home-content > img {
    height: 75%;
}

div {
    padding-left: 15px;
    padding-right: 15px;
}

div.intro-buttons {
    margin-top: 5vh;
}

div.map-inputs {
    display: flex;
    align-items: center;
    height: 2em;
    margin-bottom: 0.8em;
}

div.inner {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0;
    margin-right: 30px;
}

div#stats {
    width: 35vw;
    background-color: var(--color-2);
    margin-right: 15px;
    border-radius: 5px;
}

div#map {
    width: 100%;
    height: 77vh;
    padding-right: 15px;
}

div.map-div {
    display: flex;
    margin-right: 15px;
    padding-right: 0;   
}

h1 {
    font-size: 3.5em;
    font-family: "Futura", monospace;
    font-weight: 600;
    margin-bottom: 20px;
    margin-left: 20px;
}


h1.home-header {
    font-size: 3vw;

}

div#stats > h1 {
    font-size: 1.5em;
}

h1#coords {
    margin-top: 15px;
    margin-right: 10px;
}

p {
    font-size: 1.2em;
    font-family: "Futura", monospace;
    margin-left: 20px;
}

p.degN {
    margin-right: 10px;
}

p.proj {
    font-size: 1.5em;
    font-weight: 500;
}

p.divider {
    margin-bottom: 5px;
}

li {
    margin-left: 15px;
}

input {
    margin-left: 5px;
}

button.home {
    padding: 10px 20px;
    font-size: 1em;
    margin: 0 10px;
    cursor: pointer;
    background-color: var(--color-1);
    color: black;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s color 0.3s;
    font-family: "Lato"
}

button.home:hover {
    background-color: var(--color-2)
}

button {
    padding: 10px 20px;
    font-size: 1em;
    margin: 0 10px;
    cursor: pointer;
    background-color: var(--color-1);
    color: black;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ;
    font-family: "Lato"
}

button:hover {
    background-color: var(--color-2);
    color:var(--color-1);
}

input#userInput {
    width: 20vw;
}

input#latlong {
    width: 15vw;
}

#tool {
    margin-right: 6vw;
}

.home-plots {
    display: flex;
    padding: 0;
}

.home-plot {
    height: 30vh;
}

#home-plot-big {
    padding: 0;
}
