@-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;
}

aside.languages {
  background: #272422;
  background: var(--dark-grey);
  font-size: 0.8rem;
  position: fixed;
  left: 0;
  top: 0
}

aside.languages header {
    font-family: 'Lato', sans-serif;
    padding: 5px 0 5px 10px;
    cursor: pointer
  }

aside.languages header::after {
      border-left: 1px solid #817155;
      border-left: 1px solid var(--mid-grey);
      display: inline-block;
      text-align: center;
      margin-left: 0.5em;
      content: "\2335";
      width: 1.8em;
    }

aside.languages header:active, aside.languages header:focus, aside.languages header:hover {
      background: #40332b;
      background: var(--dark-brown);
    }

aside.languages ul {
    display: none;
    list-style: none;
    position: absolute;
    max-height: 100vh;
    overflow-y: auto;
    min-width: 100%;
    padding: calc(1.3125 * 1em + 10px) 0 0;
    padding: calc(var(--line-height) * 1em + 10px) 0 0;
    margin: 0;
    left: 0;
    top: 0;
  }

aside.languages li {
    background: #272422;
    background: var(--dark-grey);
    border-top: 1px solid #817155;
    border-top: 1px solid var(--mid-grey)
  }

aside.languages li:hover {
      background: #40332b;
      background: var(--dark-brown);
    }

aside.languages li a {
      box-sizing: border-box;
      display: inline-block;
      padding: 10px 5px;
      outline: none;
      height: 100%;
      width: 100%;
    }

aside.languages ul:hover, aside.languages:active ul, aside.languages:focus ul, aside.languages[focus-within] ul, aside.languages header:active ~ ul, aside.languages header:focus ~ ul {
    display: block;
  }

aside.languages ul:hover, aside.languages:active ul, aside.languages:focus ul, aside.languages:focus-within ul, aside.languages header:active ~ ul, aside.languages header:focus ~ ul {
    display: block;
  }

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

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

section.index div.nyandagi 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;
  }
