@import url("https://fonts.googleapis.com/css?family=Montserrat&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.header {
    display: flex;
    font-family: "Montserrat";
    height: 50px;
    border-bottom: black solid 2px;
    background-color: white;
    justify-content: space-between;
    align-items: center;
}

header {
    font-size: 25px;
    margin-left: 10px;
    font-weight: bold;
}

#search-input {
    padding-left: 10px;
}

#post-button {
    background-color: transparent;
    border: none;
    font-family: "Montserrat";
    font-size: 20px;
    margin-right: 10px;
    color: black;
    text-decoration: none;
}
#post-button:hover {
    font-weight: bold;
}
.firstHeading {
    font-size: 2rem;
}
.abs {
    position: absolute;
    color: white;
    top: 50%;
    z-index: 100;
    font-family: "Montserrat";
    font-weight: 1000;
    font-size: 2.3rem;
    letter-spacing: 0.2rem;
    margin: auto;
    width: 100%;
    text-align: center;
    display: none;
}
#logged {
    top: 10%;
}

.main-container {
    position: relative;
    height: auto;
    width: 100%;
}

.menu {
    background-color: white;
    font-family: "Montserrat";
    width: 15rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: black solid 2px;
    padding: 30px;
    z-index: 1;
    text-align: center;
}

#close-button {
    position: absolute;
    top: 5px;
    left: 5px;
    background-color: transparent;
    border: none;
    color: black;
}

#close-button:hover {
    color: darkred;
}

#search-input {
    background-color: none;
    border-radius: 5px;
    height: 3.5vh;
    width: 20vh;
}

#search-input:hover {
    width: 29vh;
    height: 4.4vh;
}

input {
    font-family: "Montserrat";
    background-color: #efefef;
    border: none;
    transition: all 0.3s;
}

.text-input {
    margin-bottom: 10px;
    border-bottom: #efefef solid 1px;
    border-radius: 5px;
    padding: 3px;
}

.submit {
    background-color: #efefef;
    color: black;
    text-decoration: none;
    border-radius: 5px;
    padding-left: 10px;
    padding-right: 10px;
}

.submit:hover {
    border-bottom: black solid 1px;
}

.topic {
    font-size: 30px;
}

input:hover {
    border-color: black;
}

input:focus {
    outline: none;
}

#map {
    position: absolute;
    height: calc(100vh - 50px);
    width: 100%;
    z-index: 0;
}
