body {
    font-family: 'Roboto', sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 70px;
    padding-top: 45px;
}

.flex-cont {
    display: flex;
    flex-direction: row;
}

.flex-row {
    flex-direction: row;
    display: flex;
    margin: 5px 0;
    justify-content: center;
}

.flex-row:nth-child(1) {
    height: 550px;
}

.flex-tall {
    flex-direction: column;
    display: inline-block;
    width: 28%;
}

.flex-item {
    background-color: rgb(244, 243, 251);
    padding: 20px;
    margin: 10px 6px;
    min-height: 200px;
}

.map {
    width: 65%;
    height: 88vh;
    left: 0;
}

input[type=text] {
    width: 90%;
    padding: 6px;
    border: none;
    margin-top: 8px;
    margin-right: 16px;
    font-size: 17px;
}

.post-item {
    width: 100%;
}

.post-item:hover {
    background-color: #67686d37;
}

/* From StackOverFlow */ 

/* basic positioning */
.legend { 
    list-style: none; 
}

.legend-div {
    background: none;
    height: 30px;
    margin-bottom: none;
    padding-bottom: none;
}

.legend li { 
    float: left; margin-right: 10px; 
}
.legend span { 
    border: 1px solid #150808; float: left; width: 15px; height: 15px; margin: 2px; 
}
/* your colors */
.legend .superawesome { background-color: #ff00ff; }
.legend .awesome { background-color: #00ffff; }
.legend .kindaawesome { background-color: #0000ff; }
.legend .kindaawesome1 { background-color: #ff0a74; }
.legend .kindaawesome2 { background-color: #ccff00; }
.legend .kindaawesome3 { background-color: #ffa200; }
.legend .notawesome { background-color: #000000; }

.search {
    position: absolute;
    z-index: 1900;
    top: 10;
    left: 150;
    background-color: rgb(241, 243, 244);
    overflow: scroll;
    height: 200px;
    padding: 20px;
}

.img-thirds {
    width: 31%;
    min-width: 160px;
    height: auto;
    max-height: 800px;
    border: 2px solid rgb(36, 35, 35);
}

h4 {
    text-decoration: underline;
}

.info-block {
    background-color: rgb(240, 237, 249);
    margin-bottom: 50px;
    padding: 20px 30px;
    text-align: center;
}

/* div :not(.leaflet-popup-content-wrapper) {
    margin-bottom: 20px;
} */

#final-design-title {
    display: block;
    text-align: center;
}

.spacer {
    height: 20px;
}

.img-final {
    min-width: 200px;
    width: auto;
    max-width: 550px;
    height: auto;
    max-height: 800px;
}

.img-reg {
    height: 400px;
    width: auto;
}

/* From W3Schools */

#upBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: rgb(60, 68, 210); /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
}
  
#upBtn:hover {
    background-color: rgb(25, 27, 69); /* Add a dark-grey background on hover */
}

ul.navbar{
    position: fixed;
    left: 0; /* Align to the left of the viewport */
    top: 0; /* Stick to the top of the viewport */
    width: 100vw; /* Width will fit the content */
    list-style-type: none;
    margin: 0;
    padding: 0;
    background-color: #1c2242;
    z-index: 2000; /* Ensure it stays above other elements */
  }
  
ul.navbar li {
    float: left;
}
  
ul.navbar li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }

ul.navbar li.title-nav {
    float: right;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    margin-right: 12px;
}
  
  ul.navbar li a:hover {
    background-color: #0f0d24;
  }

