.nav-link {
  color: black;
  margin: 1px;
}

nav {
  background-color: white;
}

.home-link {
  color: white;
}

.navbar-brand {
  color: white;
}

.nav-link:hover {
  margin: 0px;
  color: white;
  border: 1px solid black;
  border-radius: 5px;
}

.active {
  border-radius: 5px;
  background-color: pink;
}

@media screen and (min-width: 500px) {
  nav {
    background-color: rgba(255, 255, 255, 0.7);
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: aqua;
  text-align: center;
}

.canvasStyle {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
}

header {
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}
header .js-appear.hidden {
  display: none;
}
header .letters {
  display: flex;
  justify-content: center;
  font-size: 45px;
  flex-wrap: wrap;
}
header .word {
  padding: 0px 8px 8px 8px;
}
header .name {
  padding-left: 8px;
}
header .js-hide.hidden {
  display: none;
}
header .click {
  cursor: pointer;
}
header .click:hover {
  text-shadow: 1px 1px pink;
}
header .cursive {
  font-family: cursive;
}
header .intro-text {
  font-size: 20px;
}
header .courier {
  font-family: "Courier New", Courier, monospace;
}

.appear-left {
  border-radius: 10%;
  opacity: 0;
  transition: opacity 0.5s 0.3s ease-out;
  will-change: opacity;
}

.appear-right {
  border-radius: 10%;
  opacity: 0;
  transition: opacity 0.5s 0.3s ease-out;
  will-change: opacity;
}

.appear-left.is-visible, .appear-right.is-visible {
  opacity: 1;
  transform: translateX(0em);
}

@media screen and (min-width: 400px) {
  .appear-left {
    border-radius: 10%;
    opacity: 0;
    transform: translateX(-2em);
    transition: transform 4s 0.25s cubic-bezier(0, 1, 0.3, 1), opacity 0.3s 0.25s ease-out;
    will-change: transform, opacity;
  }

  .appear-right {
    border-radius: 10%;
    opacity: 0;
    transform: translateX(2em);
    transition: transform 4s 0.25s cubic-bezier(0, 1, 0.3, 1), opacity 0.3s 0.25s ease-out;
    will-change: transform, opacity;
  }
}
.skill-icon {
  margin: 5px;
  padding: 10px;
  text-align: center;
  color: pink;
  font-size: 20px;
  background-color: black;
  border-radius: 5px 20px;
  width: 40px;
}

.icons {
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.about-me {
  margin-top: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  padding: 0 50px;
}
.about-me .about-me-text {
  margin-top: 20px;
}

.about-me-intro, .about-me-dev {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-me-header {
  border-top: pink 8px solid;
  font-family: "Lato";
  font-size: 50px;
  text-align: center;
  padding-top: 60px;
  margin-bottom: 0px;
  background-color: white;
  padding-left: 10px;
  padding-right: 10px;
}

.about-me-dev {
  padding-top: 20px;
}

.pic-prop {
  padding: 10px;
  display: block;
  width: 80%;
  max-width: 400px;
}

.about-me-dev-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 60px;
}

@media screen and (min-width: 800px) {
  .about-me-header {
    padding-top: 100px;
  }

  .about-me-dev {
    flex-direction: row;
    padding: 10px 100px 10px 100px;
  }

  .about-me-dev-text {
    padding-bottom: 100px;
  }

  .pic-prop {
    width: 50%;
  }

  .icons {
    padding-left: 50px;
  }

  .skill-icon {
    margin: 15px;
    padding: 10px;
    font-size: 40px;
    width: 60px;
  }

  .about-me {
    padding: 50px;
  }
}
@media screen and (min-width: 940px) {
  .about-me-intro {
    flex-direction: row;
    padding: 10px 100px 10px 100px;
  }

  .about-me-text {
    padding-left: 50px;
  }
}
@media screen and (min-width: 1040px) {
  .skill-icon {
    font-size: 60px;
    width: 80px;
  }
}
.projects-header {
  font-family: "Lato";
  font-size: 50px;
  text-align: center;
  padding-top: 60px;
  margin-bottom: 0px;
  font-size: 50px;
  text-align: center;
  margin-bottom: 0px;
  border-top: 10px pink solid;
}

.projects-div {
  background-color: rgba(0, 0, 0, 0.4);
}

.projects {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px;
}

.project-pic {
  padding: 5px;
  max-width: 300px;
  margin: 0px;
}

.project-div {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.project-div:hover .project-button {
  opacity: 1;
}

.project-div:hover .project-pic {
  opacity: 0.7;
}

.project-button {
  color: black;
  text-align: center;
  border-radius: 5px;
  position: absolute;
  top: 70px;
  opacity: 0;
  padding: 5px;
  width: 120px;
  border: 1px black solid;
  cursor: pointer;
  background-color: pink;
}
.project-button:hover {
  background-color: white;
  color: black;
  text-decoration: none;
}

.project-1, .project-2, .project-3 {
  margin: 20px;
  opacity: 0;
  transition: opacity 0.3s 0.25s ease-in;
  will-change: transform, opacity;
}

.project-1.is-visible, .project-2.is-visible, .project-3.is-visible, .project-4.is-visible {
  opacity: 1;
}

@media screen and (min-width: 800px) {
  .project-pic {
    max-width: 400px;
    margin: 0px;
  }

  .project-button {
    top: 110px;
  }
}
@media screen and (min-width: 920px) {
  .projects-div {
    padding-bottom: 70px;
  }
}
@media screen and (min-width: 1400px) {
  .projects {
    padding: 150px 100px;
  }
}
.contact-form {
  border-top: 10px pink solid;
  position: relative;
  padding: 10px;
  background-color: white;
  text-align: center;
}
.contact-form .contact-header {
  font-family: "Lato";
  font-size: 50px;
  text-align: center;
  padding-top: 60px;
  margin-bottom: 0px;
}
.contact-form .contact-text {
  font-weight: bold;
}
.contact-form .contact-submit {
  margin: 10px;
  background-color: white;
  border: 1px black solid;
  border-radius: 5px;
  padding: 5px;
  width: 100px;
}
.contact-form .contact-submit:hover {
  background-color: black;
  color: pink;
  text-decoration: none;
}

.form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.form textarea {
  padding: 10px;
  height: 200px;
  width: 300px;
}

@media screen and (min-width: 500px) {
  .contact-form {
    padding: 20px 50px 70px 50px;
  }

  .form textarea {
    height: 300px;
    width: 400px;
  }
}
footer {
  color: pink;
  text-align: center;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
}
footer .footer-icon {
  margin: 5px;
  padding: 10px;
  text-align: center;
  color: black;
  font-size: 20px;
  background-color: pink;
  border-radius: 5px 20px;
  width: 40px;
}

.footer-icon-container {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
}

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