body, html {
  height: 100%;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 5vw;
}

* {
  box-sizing: border-box;
}

.bg-image {
  /* The image used */
  background-image: url("./assets/background.jpg");

  /* Add the blur effect */
  filter: blur(8px);
  -webkit-filter: blur(4px);

  /* Full height */
  height: 100%;

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}


/* Position text in the middle of the page/image */
.bg-text {
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0, 0.4); /* Black w/opacity/see-through */
  color: white;
  font-weight: bold;
  border: 3px solid #f1f1f1;
  border-radius: 3vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 80%;
  padding: 20px;
  text-align: center;
}

#line, #to, #from, #bus_to, #bus_from{
    color: black;
}

.autocomplete-suggestions{
    font-size: medium;
    background-color: #fff;
    border: 1px solid black;
    border-radius: 5px;
}

.tabs{
    color: white;
}

.tabs:hover{
    color: #555;
}

.bus_tab{
    display: none;
}

#line, #from, #to, #bus_to, #bus_from{
    color: black;
    width: 100%;
}

#go-train, #go-bus{
    background: #008080;
    padding: 2.5vw;
    border-radius: 50%;
}
