/* adapt from fpeckert.me */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');
:root {
  /* fpeckert original colors */
  /* --backcolor: rgba(39,43,52,1);
  --textcolor: rgba(255,253,218,1);
  --textcolors: rgba(255,253,218,0.5); */
  /* my random selection of colors */
  --backcolor: #FCFAF2;
  --textcolor: #0B346E;
  --linkcolor: #6F4C5B;
  /* rgba(39,43,52,0.5) */
  --newscolor: #6699CC;
  /* font */
  /* --fontfamily: Helvetica Neue Light, Helvetica, Arial, sans-serif; */
  --fontfamily: Lato, Helvetica, Arial, sans-serif;
}

body {
  margin: 0;
  font-family: var(--fontfamily);
  background: var(--backcolor);
  /* background-image: url(asset/voyager1.png);
  background-size: cover;
  background-repeat: no-repeat; */
  overflow-x: hidden;
  color: var(--textcolor);
}


a:link {
  font-family: var(--fontfamily);
  color: var(--textcolor);
  background-color: transparent;
  text-decoration: underline;
}

a:visited {
  font-family: var(--fontfamily);
  color: var(--textcolor);
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: var(--textcolor);
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: var(--textcolor);
  background-color: transparent;
  text-decoration: underline;
}


/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */

.spacing-box {
  height: 50px;
}

.main-wrapper {
  width: 100%;
  max-width: 450px;
  margin: auto;
  /*
  outline: 1px solid black;
  /**/
}

.img-wrapper {
  height: 200px;
  text-align: center;

  /*
  outline: 1px solid black;
  /**/
  overflow: hidden;
}

.img-wrapper img {
  max-width: 100%;
  max-height: 100%;
}

.img-wrapper img.portrait {
  max-height: 250px;
  margin-top: -23px;
}

/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */

.name-wrapper {
  /*
  outline: 1px solid black;
  /**/
  margin-top: 18px;
  text-align: center;
  /*font-family: sans-serif;*/
  font-size: 0.8em;
}

.name-wrapper h1 {
  margin: 0;
}

.name-wrapper a {
  text-decoration: none;
  /*color: black;*/
}

.name-wrapper a img {
  position: relative;
  left: 11px;
  height: 20%;
}

/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */

.description-wrapper {
  /*
  outline: 1px solid black;
  /**/
  text-align: center;
  /*font-family: sans-serif;*/
  margin-top: 8px;
  margin-bottom: 18px;
  font-size: 0.4em;
}

.description-wrapper h2 {
  margin: 0;
}

/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */

.nav-wrapper {
  /*
  outline: 1px solid black;
  /**/
  text-align: center;
  /*border-top:1px solid;*/
  border-bottom: 1px solid;
  padding-bottom: 18px;
  /*padding-top: 18px;*/
  margin-left: 10px;
  margin-right: 10px;
  box-sizing: border-box;
}

.nav-wrapper ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.nav-wrapper ul li {
  /*
  outline: 1px solid black;
  /**/
  display: inline;
  display: inline-block;
  margin: 0 9px;
}

.nav-wrapper ul li a {
  font-family: Palatino, 'Palatino Linotype', 'Book Antiqua', serif;
  /* font-weight: bold; */
  cursor: pointer;
  text-decoration: none;
  /*color: black;*/
}

.nav-wrapper ul li a.active {
  text-decoration: underline;
}

/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */

.content-wrapper {
  /*
  outline: 1px solid black;
  /**/
  width: 100%;
  max-width: 450px;
  padding: 10px;
  box-sizing: border-box;
  margin: 0;
  /*font-family: sans-serif;*/
  margin-top: -12px;
}

.content-wrapper a {
  /*color:black;*/
  cursor: pointer;
}

.content-wrapper p {
  margin-top: .1cm;
}

.content-title {
  font-weight: bold;
}

/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */

.project-text {
  margin: 0;
  margin-bottom: 13px;
  color: var(--textcolor);
}

/* .project-text a{
  color:black;
} */
.abstract-toggle-wrapper {
  padding-left: 10px;
  box-sizing: border-box;
  /*overflow:hidden;*/
}

/*
.abstract-toggle-wrapper p{
  font-size: 0.8em;
}
*/
.abstract-text-wrapper {
  overflow: hidden;
}

.abstract-text-wrapper p {
  margin: 0;
  font-family: monospace;
}

.toggle-wrapper {
  margin-top: 0px;
  margin-bottom: 15px;
}

.toggle-wrapper a {
  /*color:black;*/
  font-weight: normal;
  /*
  font-style: italic;
  */
  font-size: 0.7em;
}

p.abstract{
  /* font-size: 0.9em; */
  font-size: small;
  font-family: Avenir, monospace;
  margin-bottom: 0em;
}

/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */

.slide-in {
  transition: all ease 0.3s;
}

.fade-in {
  animation: fadeIn 1s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.indent {


  padding-left: 10px;
  box-sizing: border-box;
}

.no-margin {
  margin: 0;
}

.small-font {
  font-size: 0.8em;
}

.description-wrapper h2.marg-top {
  margin-top: 5;
}

.no-underline {
  text-decoration: none;
}
