@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Zilla+Slab&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap");
html {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f3f3f3;
}

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

h1,
h2,
h3 {
  font-family: "Zilla Slab", serif;
  font-weight: 600;
  font-style: normal;
  color: #010001;
}

p,
span {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

a:link,
a:visited {
  color: #07004d;
}

a:hover,
a:active {
  color: #8c1c13;
}

#shadow_wrap {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
  box-shadow: inset 0 0 5em 1em #bdbdbd;
}

#greeting {
  font-family: "Indie Flower", cursive;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  font-size: 3rem;
}

#profile_img_container > img {
  margin: 0 1rem;
  max-width: 100%;
  width: 12rem;
  height: 12rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  border: 2px solid #ddd;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

#content {
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 90%;
  margin: auto;
}

#intro {
  height: 100%;
  flex: 0 0 33%;
  max-width: 33%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#intro_section {
  padding: 1rem;
}

#ext_links_menu {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  justify-content: flex-start;
}

.ext_links {
  fill: #07004d;
}

.ext_links:hover {
  fill: #8c1c13;
}

#contact_text {
  font-size: 1.2rem;
}

#contact_text > a {
  text-decoration: none;
  color: black;
}

#contact_text > a:hover {
  color: #8c1c13;
  text-decoration: underline;
}

#main {
  flex: 0 0 66%;
  max-width: 66%;
  overflow-y: auto;
  scrollbar-color: #cacf85 rgba(189, 189, 189, 0.2274509804);
  scrollbar-width: thin;
}

#main_section {
  padding: 3rem 14rem;
}

.section_header {
  margin: 2rem 0 0 -2rem;
}

.entry {
  margin: 1rem 0;
}

.entry > .title {
  margin: 0 0 0.5rem 0;
}

.entry > .years {
  float: right;
}

.details > p {
  text-align: justify;
}

.wide_entry {
  margin: 0rem -10rem;
}

.fill_div {
  display: block;
  height: 100%;
  width: 100%;
  text-decoration: none;
}

.details {
  padding: 0 1rem;
}

.entry_image {
  max-height: 100%;
  max-width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 3px;
  border: 1px solid #ddd;
}

.entry_image_container {
  position: relative;
  border-radius: 2px;
}

.win_button {
  background: silver;
  box-shadow: inset -1px -1px #0a0a0a, inset 1px 1px #fff, inset -2px -2px grey, inset 2px 2px #dfdfdf;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  color: transparent;
  min-height: 23px;
  min-width: 75px;
  padding: 0 12px;
  text-shadow: 0 0 #222;
  -webkit-font-smoothing: none;
  font-family: "Pixelated MS Sans Serif", Arial;
  font-size: 11px;
}

.win_button:focus,
#language_button:focus {
  outline: 1px dotted #000;
  outline-offset: -4px;
}

.win_button:not(:disabled):active,
#language_button:active {
  box-shadow: inset -1px -1px #fff, inset 1px 1px #0a0a0a, inset -2px -2px #dfdfdf, inset 2px 2px grey;
  text-shadow: 1px 1px #222;
}

#language_button {
  cursor: pointer;
  background-color: silver;
  position: fixed;
  bottom: 1rem;
  left: 6rem;
  padding: 1rem;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  text-shadow: 0 0 #222;
  -webkit-font-smoothing: none;
  box-shadow: inset -1px -1px #0a0a0a, inset 1px 1px #fff, inset -2px -2px grey, inset 2px 2px #dfdfdf;
  font-family: "Pixelated MS Sans Serif", Arial;
}

.hr_middle {
  margin: -4px 0;
  color: #07004d;
}

.hr_top_bottom {
  color: #8c1c13;
}

.entry_divider {
  color: #8c1c13;
  margin: 1.5rem 0;
}

@media screen and (300px <= width <= 800px) {
  #content {
    flex-direction: column;
    height: unset;
  }
  #intro {
    flex: 0 0 100%;
    max-width: 100%;
  }
  #intro_section {
    margin: 1rem 0;
  }
  #main {
    flex: 0 0 100%;
    max-width: 100%;
  }
  #main_section {
    padding: unset;
  }
  .section_header {
    margin: 2rem 0 0 0;
  }
}/*# sourceMappingURL=main.css.map */