:root {
  font-size: 100%;
}

:root body {
  margin: 0;
  font-size: 1rem;
  
  font-family: "Open Sans",sans-serif;

  /* remove tap blue color on mobile device: */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  background-color: #4a618b;
}

h1, h2 {
  margin-top: 0;
  font-family: "Yeseva One","Open Sans",sans-serif;
}
h1 {
  font-size: 2rem;
}
h2 {
  font-size: 1.2rem;
  font-weight: normal;
  margin-top: 2rem;
}

a {
  color: #000;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

.app-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}
.section {
  background-color: #fff;
  padding: 3rem;
  text-align: center;
  color: rgba(0,0,0,0.65);
}
.section-primary {
  background-color: #4a618b;
  color: rgba(255,255,255,0.65);
}
.section-light {
  background-color: #bfc5d5;
}

.flex-blocks-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
ul {
  text-align: left;
}

.title-image {
  background-color: #fff;
  text-align: center;
}
.title-image img {
  width: 600px;
  height: auto;
  max-width: 100vw;
}
.image {
  width: 400px;
  height: auto;
  max-width: 100%;
  box-shadow: 0px 0px 3px #4a618b;
  margin-top: 2rem;
}
.image-large {
  width: 600px;
}

.map-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
}
.map {
  width: 600px;
  height: 400px;
  max-width: 100%;
  max-height: 70vh;
  box-shadow: 0px 0px 3px #4a618b;
}
.dot {
  width: 36px;
  height: auto;
}

.colors {
  background-color: #ffffff;
  padding: 30px;
  box-shadow: 0px 0px 3px #4a618b;
}
.c1, .c2, .c3 {
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 60px;
  margin: 10px;
}
.c1 {
  background-color: #efcbbd;
}
.c2 {
  background-color: #4a618b;
}
.c3 {
  background-color: #bfc5d5;
}
