* {
  margin: 0;
}



html {
    font-family: Helvetica, sans-serif;
    font-size: 1.2em;
 }

 .title {
  font-size: 2.4em;
}

 .padding1em {
    padding: 1em;
 }


.row {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    height:fit-content;
}

@media screen and (max-width: 800px) {
  .row {
    display: flex;
    flex-direction: column;
}}

.center {
  display: flex;
  align-items: center;
  justify-content:center;
  text-align: center;
}

.responsive {
  width: 100%;
  height: auto;
}

.logo {
  width: 150px;
  height: 150px;
}

h1 {
  font-size: 3em;
  color: #00008B;
}

.callus {
  background-color: #8bbdd9;
  padding: .5em;
  border-radius: 1em;
}

.column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content:center;
}

.border {
  border-color: #bcd9ea;
  border-radius: 1em;
  border-style: solid;
  border-width: 1px;
}

.margin {
  margin: 0.5%;
}

.gradientBody {
  background-image: linear-gradient(#bcd9ea, #e4f0f6);
}

.gradientBodyOpposite {
  background-image: linear-gradient(#e4f0f6, #bcd9ea);
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content:center;
}

.width {
  flex: 1;
}

.map {
  width: auto;
}


.height10em {
  min-height: 10em;
  width: auto;
}

