html,
body {
  margin: 0;
  font-family: Playfair Display, Georgia, Cambria, "Times New Roman", Times, serif;
}

div, p, span, li {
  font-size: 14px;
}

a {
  text-decoration: none;
}

body {
  position: relative;
  min-height: 100vh;
}

body[data-theme=dark] .mode-sunny {
  display: none;
}
body[data-theme=dark] .mode-moon {
  display: inherit;
  stroke: rgba(255, 255, 255, 0.7);
}

body[data-theme=light] .mode-moon {
  display: none;
}
body[data-theme=light] .mode-sunny {
  display: inherit;
  stroke: #121212;
}

body[data-theme=dark] {
  background: #121212;
  color: rgba(255, 255, 255, 0.7);
}
body[data-theme=dark] .page a,
body[data-theme=dark] .page a:visited {
  color: rgba(255, 255, 255, 0.7);
}

body[data-theme=light] {
  background: #f7f7f7;
  color: #121212;
}
body[data-theme=light] .page a,
body[data-theme=light] .page a:visited {
  color: #121212;
}

.section-title {
  font-size: 24px;
  margin: 1rem 0 3rem 0;
}
@media (min-width: 992px) {
  .section-title {
    font-size: 48px;
    margin: 0 0 3rem 0;
  }
}

.page {
  padding-bottom: 152px;
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .page {
    max-width: 1500px;
    margin: 1rem auto 0 auto;
  }
}
.page h1 {
  font-size: 3rem;
  font-weight: 400;
}
@media (min-width: 992px) {
  .page h1 {
    font-size: 4rem;
  }
}
.page h2 {
  font-size: 1.5rem;
}
.page h2, .page h3, .page h4, .page h5 {
  font-family: sans-serif;
}
.page p,
.page li {
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: justify;
  text-justify: inter-word;
}
@media (min-width: 992px) {
  .page p,
.page li {
    font-size: 1.3rem;
  }
}
.page a {
  text-decoration: underline;
}
.page .heading h1 {
  margin-bottom: 0;
}
.page .heading p {
  margin-top: 0;
  margin-bottom: 5rem;
}

.portrait {
  /* background: $dark; */
  text-align: center;
  max-width: 660px;
  margin: 0 auto;
}
.portrait video {
  width: 100%;
}
@media (min-width: 992px) {
  .portrait video {
    width: auto;
  }
}
.portrait img {
  vertical-align: bottom;
  border-radius: 1rem;
  width: calc(100% - 8px);
  height: auto;
}

.block-image {
  /* background: $dark; */
  text-align: center;
}
.block-image img {
  /* width: auto; */
  height: auto;
  vertical-align: bottom;
  width: 100%;
  /*
  /* @include lg { */
  /*   width: auto; */
  /* } */
}

.image-container video, .image-container img,
.video-container video,
.video-container img {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
}
.image-container video,
.video-container video {
  max-height: 400px;
}

.background-decorator {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.grid-image-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  /* background: black; */
  padding: 1rem 0;
}
.grid-image-gallery img {
  width: 100%;
  border-radius: 1rem;
}
.grid-image-gallery.only-one {
  grid-template-columns: 1fr;
  text-align: center;
}
.grid-image-gallery.only-one img {
  width: auto;
}

.grid-item {
  display: inline-block;
  width: calc(50% - 4px);
  margin: 0 0 8px 0;
}

.projects-page {
  display: grid;
  grid-template-rows: auto auto;
}
@media (min-width: 992px) {
  .projects-page {
    grid-template-columns: 500px auto;
    grid-template-rows: auto;
  }
}

@media (min-width: 992px) {
  .sidebar-menu {
    padding: 0 2rem;
  }
}

.projects-menu {
  padding: 2rem 0;
  display: none;
}
.projects-menu .project-menu-item {
  font-size: 24px;
  padding: 0.5rem 0rem;
}
.projects-menu .project-menu-item a {
  text-decoration: none;
  transition: font-size 0.5s ease;
}
.projects-menu .project-menu-item:hover a {
  font-size: 3rem;
}
@media (min-width: 992px) {
  .projects-menu {
    display: initial;
  }
}

.grid-projects {
  column-count: 2;
  column-gap: 1rem;
}

.card {
  position: relative;
  width: 100%;
  margin: 0 0 1rem 0;
  break-inside: avoid;
  display: inline-block;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 1rem;
}
.card:hover img {
  filter: blur(2px);
}
.card:hover .caption {
  background: #42429994;
}
.card:hover .caption .title {
  opacity: 1;
}
.card img {
  border-radius: 1rem;
  display: block;
  width: 100%;
  height: auto;
}
.card .caption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: background 0.5s ease;
  border-radius: 1rem;
}
.card .caption .title {
  margin: 0;
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  font-size: 21px;
  text-align: center;
}
@media (min-width: 992px) {
  .card .caption .title {
    font-size: 36px;
  }
}
.card .caption .title a, .card .caption .title a:visited {
  color: rgba(255, 255, 255, 0.7);
}
.card .caption .subtitle {
  display: none;
}

@media (min-width: 992px) {
  .project-page {
    max-width: 660px;
  }
}

img[alt=avatar] {
  border-radius: 50%;
}

.home-page {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
}
.home-page h1 {
  font-size: 4rem;
  font-weight: 400;
}
@media (min-width: 992px) {
  .home-page h1 {
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-size: 9rem;
  }
}

body[data-theme=dark] .navbar-items {
  background: #000000c7;
}
body[data-theme=dark] .navbar-item a,
body[data-theme=dark] .navbar-item a:visited {
  color: rgba(255, 255, 255, 0.7);
}
body[data-theme=dark] .menu-icon path {
  stroke: rgba(255, 255, 255, 0.7);
}

body[data-theme=light] .navbar-items {
  background: #FFFFFFC7;
}
body[data-theme=light] .navbar-item a,
body[data-theme=light] .navbar-item a:visited {
  color: #121212;
}
body[data-theme=light] .menu-icon path {
  stroke: #121212;
}

.navbar {
  margin: 0rem 1rem;
  padding: 0.5rem 0;
  text-align: right;
  font-family: sans-serif;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .navbar {
    max-width: 1500px;
    margin: 0 auto;
  }
}
.navbar .menu-icon {
  display: inline-block;
  width: 24px;
  z-index: 3;
  position: relative;
  /* &.opened { */
  /*   position: fixed; */
  /*   right: 1rem; */
  /* } */
}
@media (min-width: 992px) {
  .navbar .menu-icon {
    width: 32px;
    display: none;
  }
}
.navbar .navbar-items {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  padding: 2rem 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 992px) {
  .navbar .navbar-items {
    visibility: visible;
    opacity: 1;
    background: transparent !important;
    position: relative;
    width: auto;
    height: auto;
    flex-direction: row;
    align-items: flex-start;
  }
}
.navbar .navbar-items.opened {
  visibility: visible;
  opacity: 1;
}
.navbar .navbar-item {
  margin: 0.75rem 1rem;
  font-size: 1.5rem;
}
.navbar .navbar-item a {
  text-decoration: underline;
}
@media (min-width: 992px) {
  .navbar .navbar-item {
    display: inline-block;
  }
}
.navbar .theme-switcher {
  align-self: center;
  display: inline-block;
  margin: 0.5rem 0;
}
@media (min-width: 992px) {
  .navbar .theme-switcher {
    margin-left: auto;
    margin-right: 1rem;
  }
}

.footer {
  background: #121212;
  color: rgba(255, 255, 255, 0.7);
  /* padding: 4rem 0; */
  text-align: center;
  position: relative;
  z-index: 10;
  height: 120px;
  position: absolute;
  bottom: 0;
  width: 100%;
}
.footer a,
.footer a:visited {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  font-family: sans-serif;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .footer a,
.footer a:visited {
    /* font-size: 1.5rem; */
    font-size: 1.3rem;
  }
}
.footer .bull {
  /* margin: 0 0.25rem; */
  margin: 0 1rem;
}
.footer-inner {
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
  height: 100%;
}
.footer .network-items a {
  padding: 0 0.5rem;
}

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