@-ms-viewport {
  width: device-width;
}

:root {
  --light-blue: #00a3a6;
  --dark-blue: #005859;
  --mid-grey: #817155;
  --dark-grey: #272422;
  --dark-brown: #40332b;
  --text: #e2eae2;
  --line-height: 1.3125;
}

body {
  background: #005859;
  background: var(--dark-blue);
  background:
    radial-gradient(
      ellipse closest-corner at center 50vh,
      #00a3a6 0%,
      #005859 100%
    ) no-repeat,
    #005859;
  background:
    radial-gradient(
      ellipse closest-corner at center 50vh,
      var(--light-blue) 0%,
      var(--dark-blue) 100%
    ) no-repeat,
    var(--dark-blue);
  font-family: 'Merriweather', serif;
  line-height: 1.3125;
  line-height: var(--line-height);
  color: #e2eae2;
  color: var(--text);
  min-height: 100%;
  margin: 0;
  padding: 0;
}

a:link,a:visited {
  color: #e2eae2;
  color: var(--text);
}

a:-webkit-any-link {
  color: #e2eae2;
  color: var(--text);
}

a:-moz-any-link {
  color: #e2eae2;
  color: var(--text);
}

a:any-link {
  color: #e2eae2;
  color: var(--text);
}

a:-webkit-any-link, a:hover, a:active {
  text-decoration: none;
}

a:-moz-any-link, a:hover, a:active {
  text-decoration: none;
}

a:any-link, a:hover, a:active {
  text-decoration: none;
}

h1,h2,h3 {
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.1em;
}

p {
  line-height: 1.6;
  font-size: 1.25em;
}

section.index {
  height: 100vh;
  width: 100%
}

section.index div.andogi {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 50vw;
    height: 50vh
  }

section.index div.andogi img {
      -o-object-fit: contain;
         object-fit: contain;
      width: 100%;
      height: 100%;
    }

section.index header,
  section.index footer {
    display: flex;
    height: 25vh;
    width: 100%
  }

section.index header svg, section.index footer svg {
      width: 100%;
      height: 100%
    }

section.index header svg text, section.index footer svg text {
        font-family: 'Diplomata SC', cursive;
        font-size: 4.2rem;
        fill: #e2eae2;
        fill: var(--text);
      }

section.about {
  max-width: 40em;
  margin: 5em auto;
  text-align: justify
}

section.about h1,section.about h2,section.about h3 {
    text-align: center;
  }

section.about h1 {
    font-size: 2em;
  }
