@import url("https://fonts.googleapis.com/css2?family=Anton&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Anton&family=Montserrat&display=swap");

html {
  width: 100%;
  height: 100%;
  margin: 0;
  font-family: "Montserrat", serif;
  font-size: 1em;
  scroll-behavior: smooth;
}

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

html body #site-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  background-color: #0F4C81;
  -webkit-box-shadow: 0px 2px 2px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 2px 2px 1px rgba(0, 0, 0, 0.25);
}

html body #site-header #main-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 56px;
}

html body #site-header #main-header #menu-button {
  width: 40px;
  height: 40px;
  display: block;
  margin-left: 8px;
  border: none;
  background: none;
}

html body #site-header #main-header #menu-button:active {
  padding: 0px 8px;
  background-color: #721817;
}

html body #site-header #main-header #desktop-header {
  display: none;
}

html body #site-header #header-menu {
  background-color: #721817;
  color: #F8F9FA;
  height: 0px;
  width: 100%;
  -webkit-transition: height 0.05s linear;
  transition: height 0.05s linear;
}

html body #site-header #header-menu nav {
  visibility: hidden;
}

html body #site-header #header-menu nav ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 56px;
  font-family: "Montserrat", serif;
  font-size: 1em;
  border-bottom: 1px solid #F8F9FA;
}

html body #site-header #header-menu nav ul li:hover {
  background-color: #3b4751;
}

html body #site-header .transform-active {
  -webkit-transition: height 0.05s linear;
  transition: height 0.05s linear;
  height: 100vh !important;
}

html body #site-body {
  width: 100%;
  height: calc(100% - 56px);
  overflow-y: scroll;
}

html body #site-body .section-header {
  font-family: "Anton", serif;
  font-size: 2.5em;
  text-align: center;
  margin: 16px 0px 32px 0px;
}

html body #site-body .body-section {
  min-height: 30em;
  padding: 16px;
}

html body #site-body #about-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  background-color: #F8F9FA;
  color: #F8F9FA;
  background-image: url(/assets/main-background.jpg);
  background-size: cover;
}

html body #site-body #about-section #title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
}

html body #site-body #about-section #title-wrapper #main-heading {
  font-family: "Anton", serif;
  font-size: 3.5em;
  text-align: center;
  margin-bottom: 16px;
}

html body #site-body #about-section #title-wrapper #subtitle {
  font-size: 1.25em;
  text-align: center;
}

html body #site-body #skills-section {
  background-color: #721817;
  color: #F8F9FA;
}

html body #site-body #skills-section .skill {
  margin: 16px 0px;
  padding: 16px;
  border-radius: 4px;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  -ms-grid-columns: 56px auto;
  grid-template-columns: 56px auto;
  background-color: #FFFFFF;
  color: #303A42;
  -webkit-box-shadow: 0px 2px 2px 2px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 2px 2px 2px rgba(0, 0, 0, 0.25);
}

html body #site-body #skills-section .skill .skill-icon {
  width: 48px;
  height: 48px;
  margin-right: 8px;
}

html body #site-body #skills-section .skill .skill-header {
  font-size: 1.5em;
  font-family: "Anton", serif;
  color: #0F4C81;
  margin-bottom: 16px;
  margin-left: 8px;
}

html body #site-body #skills-section .skill .skill-description {
  font-size: 1em;
  margin: 8px;
  line-height: 140%;
}

html body #site-body #portfolio-section {
  background-color: #F8F9FA;
  color: #0F4C81;
}

html body #site-body #portfolio-section .portfolio-item {
  margin: 16px 0px;
  padding: 8px;
  border-radius: 4px;
  background-color: #FFFFFF;
  color: #303A42;
  -webkit-box-shadow: 0px 2px 2px 2px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 2px 2px 2px rgba(0, 0, 0, 0.25);
}

html body #site-body #portfolio-section .portfolio-item .portfolio-item-header {
  font-size: 2em;
  font-family: "Anton", serif;
  color: #0F4C81;
  margin-bottom: 8px;
  margin-left: 8px;
}

html body #site-body #portfolio-section .portfolio-item .portfolio-item-description {
  font-size: 1em;
  margin-left: 8px;
  line-height: 140%;
}

html body #site-body #portfolio-section #temporary-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 200px 48px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
}

html body #site-body #portfolio-section #temporary-message h4 {
  font-size: 2em;
  text-align: center;
  font-family: "Anton", serif;
  color: #0F4C81;
  margin-bottom: 8px;
}

html body #site-body #portfolio-section #temporary-message p {
  font-size: 1em;
  text-align: center;
  color: #303A42;
  line-height: 140%;
}

html body #site-body #contact-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #303A42;
  color: #F8F9FA;
}

html body #site-body #contact-section form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 16px;
  padding: 16px;
  border-radius: 4px;
  background-color: #FFFFFF;
  color: #303A42;
  -webkit-box-shadow: 0px 2px 2px 2px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 2px 2px 2px rgba(0, 0, 0, 0.25);
  width: calc(100% - 32px);
  max-width: 868px;
}

html body #site-body #contact-section form .label {
  font-size: 1em;
  margin-bottom: 4px;
}

html body #site-body #contact-section form .field {
  font-family: "Montserrat", serif;
  font-size: 1em;
  padding: 16px;
  margin-bottom: 16px;
  border: 1px solid #303A42;
  border-radius: 4px;
  max-height: 6em;
  resize: none;
}

html body #site-body #contact-section form .field:focus {
  border: 2px solid #0F4C81;
}

html body #site-body #contact-section form #message {
  min-height: 150px;
}

html body #site-body #contact-section form .submit-button {
  border: none;
  border-radius: 4px;
  font-family: "Montserrat", serif;
  font-size: 1em;
  font-weight: bold;
  color: #F8F9FA;
  background-color: #0F4C81;
  padding: 0px 16px;
  height: 48px;
}

html body #site-body #site-footer {
  height: 112px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #FFFFFF;
  background-color: #0F4C81;
}

html body #site-body #site-footer #social-icons {
  margin-bottom: 16px;
}

/*# sourceMappingURL=default.css.map */