* {
  scroll-behavior: smooth;
  margin: 0px;
  padding: 0px;
  font-family: "Pixelify Sans", sans-serif;
  color: white;
}
#braces_logo {
  color: #24d29b;
}
p {
  font-family: "JetBrains Mono", monospace;
}
body {
  margin-top: -60px;
  padding-top: 60px;
}

header {
  background-color: transparent;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.logo_container a {
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgb(255, 255, 255);
  font-size: 32px;
  text-decoration: none;
  margin-left: 20px;
}
.logo_container a {
  transition: all 0.2s ease-in-out;
}
.logo_container:hover a {
  font-size: 34px;
}

.logo_container a span {
  margin: 2px 0px 0px -10px;
  font-size: 32px;
  transition: all 0.2s ease-in-out;
}

.logo_container:hover a span {
  font-size: 34px;
}

.navigation_items {
  margin-right: 30px;
}

.navigation_items nav {
  display: flex;
  gap: 15px;
  justify-content: space-between;
}

.navigation_items nav a {
  font-size: 20px;
  text-decoration: none;
  color: white;
  transition: all 0.4s ease;
  padding: 20px 10px;
  display: inline-block;
  overflow: hidden;
  position: relative;
}
.navigation_items nav a span {
  position: relative;
  z-index: 10;
  transition: color 0.4s;
}
.typewriter {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid rgb(45, 190, 86);
  width: 37ch;
  animation:
    typing 2s steps(37, end),
    blink 0.5s step-end infinite alternate;
}
@keyframes typing {
  from {
    width: 0;
  }
}
#download_icon {
  display: flex;
  align-items: center;
  color: #24d29b;
  font-size: 23px;
  margin-left: 5px;
  transition: all 0.3s;
}
#resume_button {
  text-decoration: none;
  font-size: 18px;
  font-weight: 200;
  display: flex;
  align-items: center;
  color: #24d29b;
  margin-top: 20px;
  padding: 10px 2px 10px 10px;
  width: 100px;
  background-color: transparent;
  cursor: pointer;
  border: 2px solid #24d29b;
  box-shadow: 3px 3px 0px #ffffff;
  transition: all 0.3s;
}
#resume_button:hover {
  box-shadow: 5px 5px 0px #24d29b;
  transform: translate(-2px, -2px);
  color: black;
  background-color: white;
  #download_icon {
    color: black;
  }
}
#resume_button:active {
  box-shadow: 0px 0px 0px #24d29b;
  transform: translate(0px, 0px);
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}
.navigation_items nav a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 120%;
  height: 130%;
  background: #e6e6e6;
  z-index: 0;
  transform: skew(0deg);
  transition: all 0.4s;
}
.navigation_items nav a:hover::before {
  transform: translate3d(120%, 0, 0);
}

.navigation_items nav a:hover span {
  color: rgb(0, 0, 0);
  padding-bottom: 8px;
  border-bottom: 4px solid #24d29b;
}

section {
  padding: 0px 40px 0px 40px;
}
#name {
  color: #24d29b;
}
#profile_pic {
  z-index: 10;
  height: 400px;
  width: 400px;
  border: 4px solid rgb(255, 255, 255);
  box-shadow: 10px 10px 0px #9dacc4;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
#profile_pic:hover {
  transform: translate(-5px, -5px);
  box-shadow: 14px 14px 0px #9dacc4;
}
#home {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
#home_text {
  display: flex;
  flex-direction: column;
  font-size: 30px;
  margin-top: 20px;

  position: relative;
  top: 0px;
}
h2 {
  font-size: 60px;
}
#home_text p {
  margin-top: 20px;
}

#about {
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 30px;
}
.about_div {
  display: flex;
}

.about_div p {
  text-align: center;
}

#contact {
  height: 100vh;
  align-items: center;
  display: flex;
  justify-content: space-evenly;
  color: black;
}
#contact form {
  display: flex;
  flex-direction: column;
  width: 70vh;
}
form input {
  color: black;
  font-size: 18px;
  border-radius: 5px;
}
form label {
  padding-bottom: 10px;
}
form button {
  font-size: 30px;
  background-color: transparent;
  border: 2px solid #24d29b;
  margin: 10px 0px;
  color: #24d29b;
  position: relative;
  box-shadow: #9dacc4 3px 3px 0px;
}
form button:hover {
  color: black;
  background-color: white;
  border: 2px solid transparent;
  box-shadow: 3px 3px 0px #24d29b;
  transform: translate(-3px, -3px);
}
.form_class {
  height: 40px;
  padding: 0px 10px;
}
#contact label {
  font-size: 30px;
}
.cta {
  font-family: "pixelify sans", sans-serif;
  font-size: 40px;
  margin-bottom: -20px;
}
.cta span {
  color: #24d29b;
}
.contact_form {
  display: flex;
  flex-direction: column;
  align-items: left;
  row-gap: 30px;
}
#textarea {
  padding: 10px;
  resize: none;
}
.container {
  width: 100%;
  position: fixed;
  z-index: -10;
  height: 100%;
  --color: #1b2a43;
  background-color: #020a18;
  background-image:
    linear-gradient(
      0deg,
      transparent 24%,
      var(--color) 25%,
      var(--color) 26%,
      transparent 27%,
      transparent 74%,
      var(--color) 75%,
      var(--color) 76%,
      transparent 77%,
      transparent
    ),
    linear-gradient(
      90deg,
      transparent 24%,
      var(--color) 25%,
      var(--color) 26%,
      transparent 27%,
      transparent 74%,
      var(--color) 75%,
      var(--color) 76%,
      transparent 77%,
      transparent
    );
  background-size: 55px 55px;
}
