@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300&display=swap');

* {
  font-family: "Poppins", sans-serif;
  margin: 0px;
  font-weight: 300;
  border: 0px solid red;
  color: black;
}

body {
  background-color: #fcfcfc;
}

h1 {
  margin-left: 3%;
  text-align: center;
  font-size: 25px;
  margin-bottom: 10px;
}

h2 {
  font-size: 20px;
  margin-bottom: 4px;
  font-weight: bold;
}

a {
  text-decoration: none;
  color: purple
}

.align-right {
  text-align: right;
}

.align-center {
  text-align: center;
}

#topHeader {
  height: 11vh;
  width: 100%;
  background-color: black;
  display: grid;
  grid-template-columns: 1fr 12fr 6fr 1fr;
  grid-template-rows: 100%;
}

#topHeader>* {
  font-family: 'Lato', sans-serif;
  color: white;
  height: 5vh;
  margin-top: 2vh;
  font-size: 23px;
}

#menu {
  display: grid;
  transition: .5s;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 7fr;
  width: 300px;
  transform: translateX(100%);
  z-index: 5;
  float: right;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  background-color: black;
  color: white;
}

.menu-text {
  color: grey;
  font-size: 20px;
  margin-left: 20px;
  margin-right: 20px;
  line-height: 40px;
  border-bottom: .1px grey solid;
  text-decoration: none;
}

.menu-text:hover {
  color: white;
}

#closeButton {
  font-size: 30px;
  float: right;
  border-bottom: none;
  cursor: pointer;
}

.openButton {
  cursor: pointer;
}

.divider {
  height: 4vh;
}

p {
  color: black;
  margin: 1%;
}

p>a {
  color: purple;
  text-decoration: underline;
}

.container {
  margin: 2.5% 5% 2.5% 5%;
}

iframe {
  margin: 0% 10% 0% 10%;
}

#footer {
  display: grid;
  grid-template-columns: 1fr;
  padding: 20px 0px 20px 0px;
  grid-template-rows: 1fr 1fr;
  height: 150px;
  background-color: black;
  align-items: center;
  text-align: center;
}

#footer>p, a {
  color: white;
}

#footer>a>* {
  color: white;
}

#selection {
  display: grid;
  width: 80%;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr 1fr 1fr 1fr;
  grid-gap: 20px;
  height: 50px;
  margin-bottom: 120px;
}

button {
  padding-top: 7px;
  background-color: #ebebeb;
  width: 120px;
  text-align: center;
  font-size: 17px;
  cursor: pointer;
}

#selection>a {
  padding-top: 7px;
  width: 120px;
  text-align: center;
  font-size: 17px;
  cursor: pointer;
  color: black;
}

.city {
  background-color: #ebebeb;
}

#active-city {
  background-color: #c4c4c4;
}

#selection>label {
  padding-top: 15px;
  font-size: 17px;
  font-weight: 500;
}

.map {
  display: none;
}
