* {
  margin: 0;
  padding: 0;
  font-family: "Anton", sans-serif;
  box-sizing: border-box;
}

body {
  height:100vh;
}

button a {
  font-size: 25px;
}

a {
  text-align: center;
}

.grid-container {
  height: 80vh;
  margin: 0 auto;
  display: flex;
}

.title-header {
  background-color: #533e2d;
  height: 20vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.title-header a {
  width: 100%;
}

#logo {
  display: block;
  width: 100%;
  height: 10vh;
  margin: auto auto auto auto;

 }

.sidebar {
  height: 100%;
  width: 20vw;
  background-color: #533e2d;
  transition: 1s ease;
  position: relative;
}

.interact-box {
  display: flex;
  justify-content: center;
  padding-top: 3em;
  margin: auto;
  width: 80%;

}

#mapid {
  width: 80vw;
}

@media screen and (min-width: 0px) and (max-width: 320px) {
  button a {
    font-size: 2vh;
    margin-top: 0;
  }

  .grid-container {
    width: 100%;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  #logo {
    margin-top: 0.5em;
    width: 20%;
    height: auto;
  }

  .sidebar {
    width: 100%;
    height: 30%;
    background-color: #533e2d;
    top: 0;
    z-index: 1000;
  }

  #mapid {
    width: 100%;
    height: 70%;
  }

  .interact-box {
    display: flex;
    flex-direction: row;
  }
}

@media screen and (min-width: 320px) and (max-width: 960px) {
  .grid-container {
    margin: 0 auto;
    height: 80vh;
    display: flex;
    flex-direction: column;
  }

  #logo {
    margin-top: 0.75em;
    width: 300px;
    height: 80%;
  }

  .sidebar {
    width: 100%;
    height: 20vh;
    background-color: #533e2d;
    top: 0;
    display: flex;
    justify-content: center;
  }

  #mapid {
    width: 100%;
    height: 100%;
  }

  .interact-box {
    display: flex;
    padding-top: 0;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 30px;
  }

  .leaflet-routing-alt {
    display: none
  }
}