/*
Variables
*/
/*
Media-query
*/
/*
Mixins
*/
/*>>>>>>>> Fonts <<<<<<<<<*/
/*
Common
*/
/*
Header
*/
/*
Banner
*/
/*
Buttons
*/
/*
Typography
*/
/*
Cards
*/
/*
Footer
*/
/*
Layout
*/
/*
Theme css
*/
body {
  background-color: #fcfcfc;
}

* {
  font-family: 'Manrope', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}

main {
  min-height: 100vh;
}

img, .project-tile-col {
  --checkerSize: 10px;
  --checkerColor: lightgray;
  /* edit me */
  --checkerAltColor: white;
  background-image: linear-gradient(45deg, var(--checkerColor) 25%, transparent 25%), linear-gradient(135deg, var(--checkerColor) 25%, transparent 25%), linear-gradient(45deg, transparent 75%, var(--checkerColor) 75%), linear-gradient(135deg, transparent 75%, var(--checkerColor) 75%);
  background-color: var(--checkerAltColor);
  background-size: calc(2 * var(--checkerSize)) calc(2 * var(--checkerSize));
  background-position: 0 0, var(--checkerSize) 0, var(--checkerSize) calc(-1 * var(--checkerSize)), 0px var(--checkerSize);
  /* for fun */
  transition-property: background-color, background-position, background-size;
  transition-duration: 1s;
}

img {
  max-width: 100%;
}

.project-image {
  width: 100%;
  max-width: 100%;
  margin-bottom: 15px;
}

.project-tile {
  width: 100%;
  padding-bottom: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  opacity: 1.0;
  filter: grayscale(100%);
  transition-duration: 0.8s;
  transition-property: filter;
}

.project-tile:hover {
  opacity: 1.0;
  filter: grayscale(0%);
}

.project-tile:hover .project-tile__title {
  opacity: 1.0;
}

.project-tile__content {
  position: absolute;
  width: 100%;
  max-height: 100%;
  bottom: 0;
  left: 0;
  opacity: 1.0;
  transition-duration: 0.6s;
}

.project-tile__active {
  opacity: 1.0;
  filter: grayscale(0%);
}

.project-tile__active .project-tile__title {
  opacity: 1.0;
}

.project-tile__nav {
  display: inline-block;
  position: absolute;
  top: 15px;
  width: 49px;
  height: 49px;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
}

.project-tile__nav svg {
  width: 70%;
  height: 70%;
}

.project-tile__nav svg #Dribbble-Light-Preview {
  fill: white;
  transition-property: all;
  transition-duration: 0.6s;
}

.project-tile__nav-prev {
  left: 15px;
}

.project-tile__nav-next {
  right: 15px;
}

.project-tile__title {
  font-weight: 800;
  opacity: 0;
  background-color: black;
  color: white;
  padding-right: 8px;
  padding-left: 8px;
  padding-bottom: 3px;
  padding-top: 3px;
  width: 100%;
  text-align: left;
  margin-bottom: 0;
  transition-property: all;
  transition-duration: 0.6s;
}

.project-tile__link {
  position: absolute;
  width: 100%;
  height: 100%;
}

.project-tile-col,
.filler-col {
  padding-right: 0;
  padding-left: 0;
}

.filler-col {
  background-color: lightgrey;
}

.filler-col.filler-col__second {
  background-color: white;
}

.nav-button {
  display: inline-block;
  position: fixed;
  background-color: black;
  right: 15px;
  width: 49px;
  height: 49px;
}

.home-button__square {
  margin: 2px;
  background-color: black;
  width: 11px;
  height: 11px;
  transition-property: all;
  transition-duration: 0.6s;
}

.home-button {
  background-color: transparent !important;
  border: 2px solid transparent;
  color: white;
  top: 15px;
  display: flex;
  flex-wrap: wrap;
  transition-property: all;
  transition-duration: 0.6s;
}

.home-button:hover {
  background-color: black !important;
}

.home-button:hover .home-button__square {
  background-color: white;
}

.next-button {
  background-color: black;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  transition-property: all;
  transition-duration: 0.6s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.next-button svg {
  width: 70%;
  height: 70%;
}

.next-button svg #Dribbble-Light-Preview {
  fill: white;
  transition-property: all;
  transition-duration: 0.6s;
}

.next-button:hover {
  background-color: white;
}

.next-button:hover svg #Dribbble-Light-Preview {
  fill: black;
}

.top-button {
  cursor: pointer;
  position: fixed;
  bottom: 15px;
  display: none;
  opacity: 0;
  justify-content: center;
  align-items: center;
}

.top-button svg {
  width: 70%;
  height: 70%;
}

.top-button svg #Dribbble-Light-Preview {
  fill: white;
  transition-property: all;
  transition-duration: 0.6s;
}

.top-button:hover {
  background-color: white;
}

.top-button:hover svg #Dribbble-Light-Preview {
  fill: black;
}

.top-spacer,
.bottom-spacer {
  height: 15px;
}

.mail-link {
  color: black;
}

.mail-link:hover {
  color: gray;
}

.mail-link:visited {
  color: black;
}

.mail-link:active {
  color: gray;
}

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