/*NOTES:  
Update Github and Codepen links*/

:root {
  --primary-color: #72eb2d; /*#72eb2d*/
  --btn-size: 300px;
  --primary-white: #faf9f6; /* Default white color */
  --primary-black: #222222; /* Default black color */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box !important;
}

html {
  scroll-behavior: smooth;
  font-family: poppins, sans-serif;
  font-display: swap;
}

body {
  background-color: var(--primary-black);
}

.navbar {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.navbar-logo {
  width: 350px;
  height: 75px;
  margin: 30px;
  padding: 0 0 0 50px;
}

/*Place toggle inline with navbar*/
.switch-wrapper {
  margin-top: 35px;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  margin-left: 10px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: var(--primary-black);
  transition: 0.4s;
}

input:checked + .slider {
  background-color: var(--primary-color);
}

input:focus + .slider {
  box-shadow: 0 0 1px var(--primary-color);
}

input:checked + .slider:before {
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.slider-text {
  color: var(--primary-white);
}

/* Dropdown Button */
.dropbtn {
  width: 150px;
  background-color: var(--primary-black);
  border: 5px solid rgba(114, 235, 45, 1);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.25);
  border-radius: 45px;
  color: var(--primary-white);
  padding: 16px;
  margin: 30px;
  font-size: 16px;
  cursor: pointer;
}

/* Dropdown button on hover & focus */
.dropbtn:hover,
.dropbtn:focus {
  background-color: var(--primary-black);
  border: 5px solid rgba(114, 235, 45, 1);
  box-shadow: 0px 0px 25px rgba(114, 235, 45, 1),
    0px 0px 50px rgb(157, 224, 117), 0px 0px 100px rgb(204, 221, 194);
  transform: scale(1.1);
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  float: right;
  border-radius: 45px;
  padding: 0 50px 0 50px;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  left: 80px;
  min-width: 160px;
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  background-color: var(--primary-black);
  color: var(--primary-white);
  box-shadow: 0px 0px 100px rgb(204, 221, 194);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  border-radius: 45px;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  background-color: var(--primary-color);
  box-shadow: 0px 0px 100px rgb(204, 221, 194);
  transform: scale(1.1);
}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {
  display: block;
}

/*Hero Section*/
.hero-wrapper {
  width: 100%;
  height: calc(100% - 100px);
  box-sizing: border-box;
}

.hero-card {
  width: 80%;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: row;
  background-color: var(--primary-black);
  color: var(--primary-white);
  border-radius: 20px;
  border: 5px solid rgba(114, 235, 45, 1);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.25);
  -webkit-animation: fadeInOpacity 2s linear 1;
  animation: fadeInOpacity 2s linear 1;
  contain: layout paint;
}

.hero-img-div {
  align-items: center;
  margin: 20px;
  -webkit-animation: slidefromleft 2s linear 1;
  animation: slidefromleft 2s linear 1;
}

.hero-img {
  width: 300px;
  height: 300px;
  border-radius: 100%;
  align-items: center;
  margin: 75px 0 0 20px;
  background-color: #ccc;
}

.animate-img1 {
  -webkit-animation: spin 2s linear 1;
  animation: spin 2s linear 1;
}

.hero-text {
  width: 80%;
  height: 100%;
  text-align: justify;
  justify-content: center;
  padding: 20px;
  margin: 20px;
  line-height: 1.5;
}

.slidetop {
  opacity: 1;
  -webkit-animation: slidefromtop 2s linear 1;
  animation: slidefromtop 2s linear 1;
}

.fade-1 {
  margin: 10px auto;
}

.fade-1:nth-child(1) {
  opacity: 1;
  -webkit-animation: fadeInOpacity 2s 1.5s linear 1 alternate both;
  animation: fadeInOpacity 2s 1.5s linear 1 alternate both;
}

.fade-1:nth-child(2) {
  opacity: 1;
  -webkit-animation: fadeInOpacity 2s 2.5s linear 1 alternate both;
  animation: fadeInOpacity 2s 2.5s linear 1 alternate both;
}

.fade-1:nth-child(n + 3) {
  opacity: 1;
  -webkit-animation: fadeInOpacity 2s 3.5s linear 1 alternate both;
  animation: fadeInOpacity 2s 3.5s linear 1 alternate both;
}

.slidefrombottom {
  -webkit-animation: slidefrombottom 2s 4s linear 1 alternate both;
  animation: slidefrombottom 2s 4s linear 1 alternate both;
  opacity: 1;
}

.hero-btn {
  display: flex;
  height: auto;
  width: 200px;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-btn:hover {
  transform: scale(1.1);
}

.herobtn {
  width: 200px;
  background-color: var(--primary-black);
  border: 5px solid rgba(114, 235, 45, 1);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.25);
  border-radius: 45px;
  color: var(--primary-white);
  padding: 16px;
  margin: 30px;
  font-size: 16px;
  cursor: pointer;
}

.herobtn:hover {
  background-color: var(--primary-black);
  border: 5px solid rgba(114, 235, 45, 1);
  box-shadow: 0px 0px 25px rgba(114, 235, 45, 1),
    0px 0px 50px rgb(157, 224, 117), 0px 0px 100px rgb(204, 221, 194);
}

/*About Me Section*/
.about-me-wrapper {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.about-me-card {
  width: 80%;
  height: 100%;
  justify-content: center;
  margin: 100px auto;
  display: flex;
  background-color: var(--primary-white);
  color: var(--primary-black);
  border-radius: 20px;
  -webkit-animation: appear linear;
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
  border: 5px solid rgba(114, 235, 45, 1);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.25);
  contain: layout paint;
}

.about-me-card h1 {
  width: 100%;
  height: 10%;
  margin: 0 auto;
  padding: 10px;
  justify-content: space-evenly;
  text-align: center;
  background-color: rgba(114, 235, 45, 1);
  display: flex;
  flex-direction: row;
}

/* About Me Section */
.about-me-card h2,
.about-me-card p {
  padding: 10px;
}

.about-me-card h2 {
  margin: 0 auto;
  text-align: center;
  justify-content: space-evenly;
}

.about-me-card p {
  text-align: justify;
  justify-content: center;
  margin: 0 20px;
  line-height: 1.5;
}

/* Remove duplicate .about-me-card p rule below this line */

/* Adjust width for specific h2 */
.adjust-width {
  width: 70%;
}

.about-me-img {
  max-width: 5em;
  max-height: 5em;
  margin: 15px 15px 15px 0;
}

.p1,
.p2,
.p3 {
  display: flex;
  flex-direction: row;
  margin: 0 20px;
}

/*Skills Section*/
.skills-wrapper {
  width: 100%;
  height: 100%;
}

.skills {
  height: 150px;
  width: 150px;
  margin: 10px auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-white);
  color: var(--primary-black);
  border-radius: 20px;
  border: 5px solid rgba(114, 235, 45, 1);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.25);
}

.skills-logo {
  width: 75px;
  height: 75px;
  padding: 0 0 5px 0;
}

/*Know*/
.know-title {
  width: 60%;
  height: 300px;
  color: var(--primary-black);
  -webkit-animation: slidefromleft2 linear;
  animation: slidefromleft2 linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.know-title h1 {
  margin: 0 auto;
  padding: 10px;
  background-color: rgba(114, 235, 45, 1);
  width: 100%;
  height: 15%;
}

.know {
  display: flex;
  flex-direction: row;
}

/*Learning*/
.learn-title {
  width: 60%;
  height: 300px;
  color: var(--primary-black);
  transform: translateX(66.67%);
  -webkit-animation: slidefromright2 linear;
  animation: slidefromright2 linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.learn-title h1 {
  margin: 0 auto;
  padding: 10px;
  background-color: rgba(114, 235, 45, 1);
  width: 100%;
  height: 15%;
}

.learn {
  display: flex;
  flex-direction: row;
}

/*Want to Learn*/
.want-title {
  width: 60%;
  height: 300px;
  color: var(--primary-black);
  -webkit-animation: slidefromleft2 linear;
  animation: slidefromleft2 linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.want-title h1 {
  margin: 0 auto;
  padding: 10px;
  background-color: rgba(114, 235, 45, 1);
  width: 100%;
  height: 15%;
}

.want {
  display: flex;
  flex-direction: row;
}

/*Projects Section*/
.projects {
  display: block;
}

.mq-project {
  display: none;
}

.projects-header {
  background-color: rgba(114, 235, 45, 1);
  color: var(--primary-black);
  width: 100%;
  height: 15%;
  display: flex;
  text-align: center;
  justify-content: center;
  margin: 25px auto 0 auto;
  padding: 10px;
}

.projects-wrapper {
  height: 800px;
  max-height: 100%;
  max-width: 100%;
  place-items: center;
  text-align: center;
  margin: 0 auto 50px auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 5px solid rgba(114, 235, 45, 1);
}

/*The main CSS styles for the toggle button.*/
.projects-menu {
  position: relative;
  width: 200px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--primary-white);
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: 0.75s;
  line-height: 100%;
}

.projects-menu:after {
  content: "Click to View My Projects";
  width: 200px;
  aspect-ratio: 1 / 1;
  position: absolute;
  display: grid;
  place-items: center;
  background: var(--primary-color);
  border-radius: inherit;
  font-size: 1rem;
  transition: 0.75s;
}

.projects-menu:hover {
  transform: scale(1.1);
  box-shadow: 0px 0px 25px rgba(114, 235, 45, 1),
    0px 0px 50px rgb(157, 224, 117), 0px 0px 100px rgb(204, 221, 194);
}

.projects-open_menu:after {
  content: "My projects";
  background: var(--primary-black);
  font-size: 1.25rem;
  box-shadow: 0px 0px 25px rgba(114, 235, 45, 1),
    0px 0px 50px rgb(157, 224, 117), 0px 0px 100px rgb(204, 221, 194);
}

/*Style & animate the menu items.*/
.projects-open_menu .projects-nav-item {
  transform: scale(1) rotate(360deg);
}

.projects-open_menu .projects-nav-item:hover {
  transform: scale(1.1) rotate(360deg);
  box-shadow: 0px 0px 25px rgba(114, 235, 45, 1),
    0px 0px 50px rgb(157, 224, 117), 0px 0px 100px rgb(204, 221, 194);
}

.projects-img {
  border-radius: 20px;
  height: 190px;
  width: 290px;
}

.projects-nav-item {
  width: 300px;
  height: 200px;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  background: var(--primary-color);
  position: absolute;
  transition: 0.75s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transform: scale(0); /*hides projects*/
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  font-family: sans-serif;
  color: var(--primary-black);
  box-sizing: border-box;
  display: grid;
  place-items: center;
}

.projects-open_menu .projects-nav-item:nth-child(1) {
  top: calc(var(--btn-size) * -0.25);
  left: calc(var(--btn-size) * -1.25);
}
.projects-open_menu .projects-nav-item:nth-child(2) {
  place-items: center;
  text-align: center;
  top: calc(var(--btn-size) * -0.75);
}
.projects-open_menu .projects-nav-item:nth-child(3) {
  top: calc(var(--btn-size) * -0.25);
  left: calc(var(--btn-size) * 0.91);
}
.projects-open_menu .projects-nav-item:nth-child(4) {
  top: calc(var(--btn-size) * 0.5);
  left: calc(var(--btn-size) * -1.25);
}
.projects-open_menu .projects-nav-item:nth-child(5) {
  top: calc(var(--btn-size) * 0.5);
  left: calc(var(--btn-size) * 0.91);
}

.projects-open_menu .projects-nav-item:nth-child(6) {
  place-items: center;
  text-align: center;
  top: calc(var(--btn-size) * 0.75);
}

/*Projects Section if under 768px*/
.mq-projects-wrapper {
  height: auto;
  max-height: 100%;
  max-width: 100%;
  place-items: center;
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 5px solid rgba(114, 235, 45, 1);
  padding-bottom: 50px;
}

.mq-project-header {
  background-color: rgba(114, 235, 45, 1);
  color: var(--primary-black);
  width: 100%;
  height: 15%;
  display: flex;
  text-align: center;
  justify-content: center;
  margin: 0 auto;
  padding: 10px;
  -webkit-animation: appear linear;
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.mq-project-div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 5px solid rgba(114, 235, 45, 1);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.25);
  width: 80%;
  margin: 20px auto;
  border-radius: 20px;
  height: auto;
  background-color: var(--primary-white);
  -webkit-animation: appear linear;
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.mq-project-div h1 {
  width: 100%;
  height: 10%;
  margin: 0 auto;
  padding: 10px;
  justify-content: space-evenly;
  text-align: center;
  background-color: rgba(114, 235, 45, 1);
}

.mq-project-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

/*Contact Me Section*/
/* Style inputs with type="text", select elements and textareas */
input[type="text"],
select,
textarea {
  width: 100%; /* Full width */
  min-width: 300px;
  padding: 12px; /* Some padding */
  border: 1px solid #ccc; /* Gray border */
  border-radius: 4px; /* Rounded borders */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  resize: vertical; /* Allow the user to vertically resize the textarea (not horizontally) */
}

.h-captcha {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Style the submit button with a specific background color etc */
.contact-btn {
  width: 150px;
  background-color: var(--primary-black);
  border: 5px solid rgba(114, 235, 45, 1);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.25);
  border-radius: 45px;
  color: var(--primary-white);
  padding: 16px;
  margin: 20px auto;
  font-size: 16px;
  cursor: pointer;
  display: block; /* Center the button */
}

.contact-btn:hover {
  background-color: var(--primary-black);
  border: 5px solid rgba(114, 235, 45, 1);
  box-shadow: 0px 0px 25px rgba(114, 235, 45, 1),
    0px 0px 50px rgb(157, 224, 117), 0px 0px 100px rgb(204, 221, 194);
  transform: scale(1.1);
}

label:nth-child(1) {
  margin-top: 5px;
  display: block;
}

/* Add a background color and some padding around the form */
.contact-header {
  width: 100%;
  min-width: 100%;
  height: 100%;
  background-color: rgba(114, 235, 45, 1);
  border-radius: 20px;
  text-align: center;
  padding: 10px;
  transform: rotate(12deg);
}

.container {
  border-radius: 20px;
  background-color: var(--primary-white);
  border: 5px solid rgba(114, 235, 45, 1);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.25);
  width: 30%;
  min-width: 350px;
  padding: 20px;
  justify-content: center;
  align-items: center;
  margin: 50px auto;
}

/*Footer Section*/
.footer-wrapper {
  width: 100%;
  height: 100%;
  background-color: var(--primary-black);
  border-top: 5px solid rgba(114, 235, 45, 1);
  color: var(--primary-white);
}

.footer {
  width: 100%;
  height: 100%;
  padding: 20px 0;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer-menu-content {
  color: var(--primary-white);
  text-decoration: none;
  padding: 0 20px;
}

.footer-menu-content:hover {
  color: rgba(114, 235, 45, 1);
}

.socials {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.socials a:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.social-logo {
  width: 50px;
  height: 50px;
  -webkit-animation: wiggle 2s infinite;
  animation: wiggle 2s infinite;
}

.social-logo:hover {
  -webkit-animation: none;
  animation: none;
}

.social-icons {
  display: inline-block;
}

.footer-text {
  text-align: center;
  padding-bottom: 10px;
}

/*Animations*/
@-webkit-keyframes slidefromleft {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes slidefromleft {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}

@-webkit-keyframes slidefromleft2 {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}

@keyframes slidefromleft2 {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}

@-webkit-keyframes slidefromright2 {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(66.67%);
    opacity: 1;
  }
}

@keyframes slidefromright2 {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(66.67%);
    opacity: 1;
  }
}

@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes wiggle {
  0% {
    transform: rotate(0deg);
  }
  80% {
    transform: rotate(0deg);
  }
  85% {
    transform: rotate(12deg);
  }
  95% {
    transform: rotate(-12deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@keyframes wiggle {
  0% {
    transform: rotate(0deg);
  }
  80% {
    transform: rotate(0deg);
  }
  85% {
    transform: rotate(12deg);
  }
  95% {
    transform: rotate(-12deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@-webkit-keyframes fadeInOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeInOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes slidefromtop {
  0% {
    transform: translateY(-500%);
    opacity: 0;
  }
  80% {
    transform: translateY(15%);
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}

@keyframes slidefromtop {
  0% {
    transform: translateY(-500%);
    opacity: 0;
  }
  80% {
    transform: translateY(15%);
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}

@-webkit-keyframes slidefrombottom {
  0% {
    transform: translateY(500%);
    opacity: 0;
  }
  80% {
    transform: translateY(-15%);
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}

@keyframes slidefrombottom {
  0% {
    transform: translateY(500%);
    opacity: 0;
  }
  80% {
    transform: translateY(-15%);
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}

@-webkit-keyframes appear {
  from {
    opacity: 0;
    scale: 0;
  }
  to {
    opacity: 1;
    scale: 1;
  }
}

@keyframes appear {
  from {
    opacity: 0;
    scale: 0;
  }
  to {
    opacity: 1;
    scale: 1;
  }
}

/*Light Mode*/
.light-mode {
  background-color: var(--primary-white);
  color: var(--primary-black);
}

body.light-mode span {
  color: var(--primary-black);
}

body.light-mode .herobtn {
  background-color: var(--primary-white);
  color: var(--primary-black);
}

body.light-mode .dropbtn {
  background-color: var(--primary-white);
  color: var(--primary-black);
}

body.light-mode .hero-card {
  background-color: var(--primary-white);
  color: var(--primary-black);
  border: 5px solid rgba(114, 235, 45, 1);
}

body.light-mode .hero-img {
  background-color: var(--primary-white);
}

body.light-mode .footer {
  background-color: var(--primary-white);
  color: var(--primary-black);
}

body.light-mode .footer-text {
  background-color: var(--primary-white);
  color: var(--primary-black) !important;
}

body.light-mode .footer-menu-content {
  color: var(--primary-black);
  text-decoration: none;
}

body.light-mode a.footer-menu-content:hover {
  color: rgba(114, 235, 45, 1);
  text-decoration: none;
}

body.light-mode .projects-open_menu:after {
  content: "My projects";
  background: var(--primary-white);
  color: var(--primary-black) !important;
  font-size: 1.25rem;
  box-shadow: 0px 0px 25px rgba(114, 235, 45, 1),
    0px 0px 50px rgb(157, 224, 117), 0px 0px 100px rgb(204, 221, 194);
}

body.light-mode .contact-btn {
  width: 150px;
  background-color: var(--primary-white);
  border: 5px solid rgba(114, 235, 45, 1);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.25);
  border-radius: 45px;
  color: var(--primary-black) !important;
  padding: 16px;
  margin: 20px auto;
  font-size: 16px;
  cursor: pointer;
  display: block; /* Center the button */
}

body.light-mode .contact-btn:hover {
  background-color: var(--primary-white);
  color: var(--primary-black);
  border: 5px solid rgba(114, 235, 45, 1);
  box-shadow: 0px 0px 25px rgba(114, 235, 45, 1),
    0px 0px 50px rgb(157, 224, 117), 0px 0px 100px rgb(204, 221, 194);
  transform: scale(1.1);
}

/*Media Queries*/

/*Under 1024px*/
@media screen and (max-width: 1024px) {
  .navbar-logo {
    width: 200px;
    height: 50px;
    padding: 0 0 0 20px;
  }

  .hero-img {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .hero-card {
    flex-direction: column;
    width: 90%;
    height: auto;
  }

  .hero-text {
    width: 100%;
    text-align: center;
    padding: 20px;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }

  .about-me-card {
    width: 90%;
    margin: 50px auto;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .skills-wrapper,
  .know-title,
  .learn-title,
  .want-title {
    width: 100%;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    text-align: center;
    transform: translateX(0%);
  }

  .know-title {
    margin-top: 50px;
  }

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

  .projects {
    display: none;
  }

  .mq-project {
    display: block;
  }

  .footer-text {
    padding-bottom: 20px;
  }
}

/*under 768px*/
/*navbar needs work*/
@media screen and (max-width: 768px) {
  .navbar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .navbar-logo {
    width: 200px;
    height: 50px;
    padding: 0;
    margin-bottom: -20px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .hero-img {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .hero-card {
    flex-direction: column;
    width: 90%;
    height: auto;
    margin-bottom: 20px;
  }

  .hero-text {
    width: 100%;
    text-align: center;
    padding: 20px;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }

  .about-me-card {
    width: 90%;
    margin: 50px auto;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

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

  .skills-wrapper,
  .know-title,
  .learn-title,
  .want-title {
    width: 100%;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    text-align: center;
    transform: translateX(0%);
  }

  .know-title {
    margin-top: 20px;
  }

  .footer-text {
    padding-bottom: 20px;
  }

  #contact {
    -webkit-animation: appear linear;
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
  }
}

/*under 480px*/
/*navbar needs work*/
@media screen and (max-width: 480px) {
  .navbar-logo {
    width: 150px;
    height: 40px;
    padding: 0 0 0 10px;
  }

  .hero-img {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .hero-card {
    flex-direction: column;
    width: 95%;
    height: auto;
  }

  .hero-text {
    width: 100%;
    text-align: center;
    padding: 10px;
  }

  .about-me-card,
  .skills-wrapper,
  .know-title,
  .learn-title,
  .want-title {
    width: 95%;
    margin: auto;
  }

  .know-title {
    margin-top: 30px;
  }
}

/*Prefers Reduced Motion*/
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation: none !important;
    animation: none !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
}
