/* Animations */
@keyframes fullturn {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* Core Stuff */
* {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  margin: 0;
}

body {
  position: relative;
  height: 100vh;
  width: 100vw;
  font-size: 1rem;
  font-family: sans-serif;
  line-height: 1.7;
  color: black;
  margin: 0;
  background-position: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #454B4D;
}

a {
  color: #1F8CD6;
}

a:hover {
  color: #175E91;
}

pre {
  background: #F0F0F0;
  margin: 1rem 0;
  border-radius: 2px;
}

blockquote {
  border-left: 10px solid #eee;
  margin: 0;
  padding: 0 2rem;
}

/* Utility Classes */
.wrapper {
  margin: 0;
}

.padding {
  padding: 3rem 1rem;
}

.left {
  float: left;
}

.right {
  float: right;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

/* Content Styling */
.header .padding {
  padding: 1rem 0;
}

.header {
  background-color: inherit;
}

.header a {
  color: inherit;
}

.header .logo {
  font-size: 1.5rem;
}

.main {
  width: 100%;
  height: 100%;
}
.main .wrapper {
  width: 100%;
  height: 100%;
}
.main .wrapper .contact-email {
  position: absolute;
  top: 0.5rem;
  right: 1.5rem;
}
.main .wrapper .contact-email a {
  color: black;
  text-decoration: none;
}
.main .main-project {
  position: absolute;
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  height: auto;
  border-radius: 50%;
  background-position: center;
  animation-name: fullturn;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.main .project {
  position: absolute;
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  height: auto;
  border-radius: 50%;
  background-position: center;
  background-size: 10%;
  animation-name: fullturn;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  cursor: pointer;
}
.main .project:hover {
  animation-play-state: paused;
}

.footer {
  background-color: inherit;
}

.featherlight .featherlight-close-icon {
  position: fixed !important;
}
.featherlight .featherlight-content {
  min-width: 50vmin;
  width: 100vw;
  min-height: 50vmin;
  height: 100vh;
  max-height: 100% !important;
  overflow: hidden;
  padding: 0 0.5rem !important;
  border: 0 !important;
}
.featherlight .featherlight-content .project .wrapper {
  display: flex;
  flex-direction: column;
}
.featherlight .featherlight-content .project .wrapper img {
  display: block;
  width: 100%;
  margin: 2rem 0;
}/*# sourceMappingURL=custom.css.map */