@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;0,900;1,400;1,500;1,700;1,900&display=swap');

/* desktop */
@media screen and (min-width: 1025px) {
  div.doc {
    margin-left: auto;
    margin-right: auto;
    padding: 0em 5em 3em 5em;
    max-width: 1024px;
  }

  div.photo {
    float: right;
    top: 8px;
    right: 16px;
  }

  /* table of contents */
  ul.toc {
    margin-bottom: 35px;
  }
  ul.toc li {
    margin-left: 0;
    padding-left: 0;
  }

}

/* mobile */
@media only screen and (max-width: 1024px) {
  *, html, body, div.doc {
    margin-left: 0;
    margin-right: 0;
    padding: 5px;
  }

  div.photo {
    text-align: center;
    margin-top: 15px;
  }

  h1 {
    margin-top: 0;
    margin-bottom: 0;
    text-align: center;
  }

  li {
    margin-left: 20px;
  }

  a {
    line-height: 2.5;
  }
}

html,body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;

  font-family: 'Roboto', sans-serif;

  color: #202124;
  background-color: #f5f5f5;

  line-height: 1.7;
}

h1 {
  font-size: 30pt;
}

h2 {
  font-size: 20pt;
}

h3 {
  font-size: 15pt;
}

p {
  font-size: 12pt;
}

ul.contacts {
  list-style-type: none;
  margin-top: 0;
  margin-left: 0;
  padding-left: 0;
}
ul.contacts li {
  margin-left: 0;
  padding-left: 0;
}

ul li {
  font-size: 12pt;
}

a {
  color: rgb(26, 115, 232);
  font-weight: bold;
}

a:link, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:active {
  text-decoration: underline;
}

div.main {
  width: 100%;
  min-height: 1380px;
  padding: 0;
}

div.doc {
  background-color: white;

  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

div.photo img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  padding: 0;

  box-shadow: 0 0 0 3px rgba(60, 64, 67, 0.15) ;
}

span.quote {
  font-style: italic;
}

div.testimonial {
  margin: 0 auto;
  background: #f0f8ff;
  width: 50%;
  border-radius: 1em;
  padding: 1em 1em 1.5em 1em;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

div.testimonial div.name {
  float: right;
  padding-top: 1em;
  font-style: italic;
}

.top-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  height: 3em;
  padding: 1em;
}

.menu {
  display: flex;
  flex-direction: row;
  list-style-type: none;
}

.menu > li {
  margin: 0 1rem;
  overflow: hidden;
}
