@font-face {
  font-family: 'Raleway-Light';
  src: url('src/Raleway-Light.ttf');
  font-weight: normal;
  font-style: normal;
}

html {
  --primarycolor: white;
  --secondarycolor: black;
}

body {
  margin: 0;
  height: 100vh;
  font-family: 'Raleway-Light';
  font-size: 18px;
  background-color: var(--primarycolor);
  color: var(--secondarycolor);
}

* {
  box-sizing: border-box;
  cursor: none;
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #fff;
  z-index: 1000;
  user-select: none;
  pointer-events: none;
  mix-blend-mode:difference;
  opacity: 0;
  transform: translate(-50%, -50%);
}

.cursor-hover {
  position: fixed;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #fff;
  background-color: transparent;
  z-index: 1000;
  user-select: none;
  pointer-events: none;
  mix-blend-mode:difference;
  opacity: 0;
  transform: translate(-50%, -50%);
}

section {
  height: 100vh;
}

.home-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}


.homeText {
  font-size: 35px;
  text-align: center;
  min-width: 220px;
  margin-top: 0px;
  margin-bottom: 10px;
}


#home-sub-text {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding-bottom: 8px;
  opacity: 0;
  transform: translateY(-20px);
}

.center-buttons {
  display: flex;
  justify-content: space-evenly;
}

.button {
  background-color: #fff;
  height: 30px;
  width: 85px;
  font-weight: 500;
  border: 2px solid #000000;
  box-shadow: 5px 5px #000000;
  color: #000000;
  transition: box-shadow 300ms linear;
}

.button:hover {
  box-shadow: none;
  color: #fff;
  background-color: #000000;
}
.contact:after{
  content:'Contact Me';
}
.contact:hover:after{
  content:'Hire Me';
}

.home-canvas {
	margin: auto;
	padding: 20px;
	background-color: #FFF;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
	box-shadow:
    0px 0px 25px rgba(0, 0, 0, 0.2),
    0px 0px 50px rgba(0, 0, 0, 0.2),
    0px 0px 100px rgba(0, 0, 0, 0.1);
  position: absolute;
}

.chevron-down {
  fill: #999;
  position: relative;
  font-size: 30px;
  left: 50%;
  transform: translate(-50%, -125%);
  top: 100%;
  width: 30px;
  height: 30px;
  animation: MoveUpDown 1.5s ease-in-out infinite;
}
@keyframes MoveUpDown {
  0%, 100% {
    transform: translate(-50%, -125%);
  }
  50% {
    transform: translate(-50%, -150%);
  }
}

#home, #about-me, #horizontal-scroll {
  min-height: 800px;
}

#about-me {
  height: 1080px;
}

.about-me-wrapper {
  display: inline-flex;
  position: relative;
  width: 80%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  justify-content: space-evenly;
}


@media (max-width: 1250px) {
  .about-me-wrapper {
      width: 100%;
  }
}

.info-wrapper {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  border-radius: 10px;
  box-shadow:
    0px 0px 25px rgba(0, 0, 0, 0.2),
    0px 0px 50px rgba(0, 0, 0, 0.2),
    0px 0px 100px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin: 8px 0px;
}

.info-image {
  border-radius: 50%;
}

.info-title {
  display: inline-block;
  margin: 5px;
  font-size: xx-large;
  font-weight: 900;
}

.info-paragraph {
  display: inline-block;
  width: 392px;
  margin: 0px;
}

.tools-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 275px;
}

.tools {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 450px;
}

.tool {
  display: flex;
  flex-direction: column;
  margin: 8px; 
  justify-content: center;
  align-items: center; 
  border-radius: 0.5rem; 
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.2);
  padding: 16px;
  width: 120px;
  height: 120px;
  background-color: var(--primarycolor);
}

.tool-image {
  display: block; 
  width: 50px; 
  height: auto; 
}

.tool-name {
  display: block; 
  text-align: center;
  margin-bottom: 0.25rem; 
  margin-top: 0.5rem; 
  font-weight: 900; 
}

.horizontal-scroll {
  overflow-x: hidden;
  position: relative;
}

.inner-horizontal-scroll {
  display: flex;
  width: 300vw;
}

.inner-horizontal-scroll section {
  width: 100vw;
  padding: 0 5vw;
}

.slide {
  min-height: 100vh !important;
  display: flex;
  justify-content: space-evenly;
  background-color: var(--secondarycolor);
  color: var(--primarycolor);
}

.project-text-container, .project-image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.project-text {
  position: relative;
  display: inline-block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.project-text > h1 {
  font-size: xx-large;
  margin-bottom: 10px;
  word-wrap:break-word;
}

.project-description {
  max-width: 600px;
}

.project-image-link {
  position: absolute;
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.project-image {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.project-image:hover~.view-filter {
  opacity: 1;
}

.view-filter {
  position: absolute;
  width: 400px;
  height: 400px;
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 0;
  z-index: 3;
  pointer-events: none;
  transition: opacity 300ms linear;
  top: 50%;
  transform: translateY(-50%);
}

.view-icon-box {
  position: absolute;
  border: 2px solid #FFF;
  width: 45px;
  height: 45px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.view-icon {
  width: 30px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#contact-me {
  background:
    linear-gradient(
      26.6deg,
      var(--primarycolor),
      var(--primarycolor) 50%,
      var(--secondarycolor) 50%,
      var(--secondarycolor)
    );
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-wrapper {
  display: flex;
  justify-content: center;
}

.contact-button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  width: 100px;
}

.contact-button > a{
  color: white;
  mix-blend-mode: difference;
  font-weight: 900;
  font-size: large;
}

.contact-button > a:after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  position: relative;
  display: block;
  height: 2px;
  left: 50%;
  background: white;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0%;
}

.contact-button > a:hover:after { 
  width: 100%; 
  left: 0; 
}

.logo {
  height: 100px;
  width: auto;
  margin: 20px;
  mix-blend-mode:difference;
}

a {
  text-decoration: none;
}

a:hover {
  color: white;
  text-decoration: none;
}

#clipboard-toast {
  position: fixed;
  bottom: -50px;
  width: 250px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  background-color: var(--secondarycolor);
  color: var(--primarycolor);
  font-size: 16px;
  padding: 10px;
  border-radius: 5px;
  user-select: none;
  transition: bottom 350ms;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.2);
  font-weight: 700;
  font-size: large;
}

#clipboard-toast.active {
  bottom: 20px;
}