html {
  font-size: 1vw;
}

body { 
  margin: 0;
  display: flex;
  align-items: center;
  height: 100vh;
  font-family: sans-serif;
}

* { 
  box-sizing: border-box;
}

.app {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.lotInfo {
  background-color: #03436b;
  color: white;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative; 
}
.lotInfo > #name {
  font-size: 2rem;
  margin: 0.25rem 0rem;
  text-align: center;
}
.lotInfo > #description {
  padding: 0 0.25rem;
}
.lotInfo > #status {
  font-size: 1.5rem;
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translate(-50%);
}

.lotMap {
  flex: 5;
  display: flex;
  align-items: center;
}
.lotMap img {
  width: 100%;
}

#logo {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
}
.hidden { 
  display: none;
}