:root {
    --color-1: rgb(190, 215, 235);
    --color-2: rgb(254, 250, 249);
    --color-3: rgb(81, 41, 30);
    --color-accent1: rgb(81, 41, 30);
    --color-accent2: rgb(81, 41, 30);
}

html {
    scroll-behavior: smooth;
}

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

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 50px;
    background-color: var(--color-3);
    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('nature_hero.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text-box {
    width: 40vw;
    height: 40vh;
    background-color: rgba(81, 41, 30, 0.93);
    color: var(--color-2);
    padding-left: 40px;
    padding-right: 40px;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.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: "Playfair Display", sans-serif;
    font-weight: 900;
    margin-bottom: 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;
}

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-accent2);
    color: white;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ;
    font-family: "Lato"
}

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

button.home-down:hover {
    background-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;
}

