@import url("https://fonts.googleapis.com/css2?family=Bitcount+Prop+Single:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap");

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

html,
body {
  background: #1c1816;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* padding: 1.5rem; */
  font-family: "Source Code Pro", monospace;
  /* overflow: hidden; */
  height: 100%;
  overflow: hidden;
  scroll-behavior: smooth;
}

body.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.625rem;
  background-color: #2c2623;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
  height: 5vh;
}
nav a {
  color: #fefcfb;
  text-decoration: none;
  font-family: "Source Code Pro", monospace;
  font-weight: 500;
  font-size: 1.2rem;
  margin: 0 0.9375rem;
  transition: color 0.3s ease, transform 0.3s ease;
}
nav a:hover {
  color: #00ffff;
  transform: scale(1.15);
}

nav a.active {
  color: #00ffff;
}

.buy_coffee {
  position: fixed;
  display: flex;
  top: 0.3rem;
  right: 0.25rem;
  z-index: 1000;
  align-items: flex-end;
  gap: 0.5rem;
  background-color: #2c2623;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
  border-radius: 0.625rem;
  flex-direction: row;
  justify-content: space-between;
}

.buy_coffee p {
  display: inline;
  color: #fefcfb;
  font-family: "Source Code Pro", monospace;
  font-weight: 500;
  font-size: 1rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.buy_coffee svg {
  width: 2rem;
  height: 2rem;
  fill: #00ffff;
  transition: transform 0.3s ease;
}

.buy_coffee:hover svg {
  transform: scale(1.2);
  fill: #00cccc;
}

main {
  height: 95vh;
  margin-top: 5vh;
  max-width: 1200px;
  width: 100%;
  color: #fefcfb;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 15rem;
  padding: 1.25rem;
  height: calc(100vh - 5vh);
}

.your_image {
  width: 9.375rem;
  height: 9.375rem;
  border: 0.125rem solid #00ffff;
  border-radius: 50%;
  object-fit: cover;
  overflow: hidden;
  margin-left: 3rem;
  clip-path: circle(50%);
}

.profile {
  position: relative;
}

.profile h1 {
  font-family: "Bitcount Prop Single", sans-serif;
  font-weight: 400;
  font-size: 2.5rem;
  margin-top: 0.625rem;
  text-align: center;
  padding: 1rem;
}

.profile p {
  font-family: "Source Code Pro", monospace;
  font-weight: 300;
  font-size: 1.2rem;
  text-align: center;
  font-style: italic;
  padding-bottom: 1rem;
}

.skills h3 {
  font-family: "Source Code Pro", monospace;
  font-weight: 500;
  font-size: 1.5rem;
  margin-top: 0.625rem;
  padding: 1rem;
  font-style: normal;
  text-decoration: underline;
}

.skills_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(3rem, 1fr));
  gap: 0.625rem;
  margin-top: 1.25rem;
  margin-right: 3rem;
  justify-items: center;
}

.skills_grid div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border: none;
  padding: 0;
  background-color: rgba(0, 255, 255, 0.05);
  border-radius: 0.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.skills_grid div:hover {
  transform: scale(1.1);
  box-shadow: 0 0 0.625rem rgba(0, 255, 255, 0.3);
}

.skills_grid div > img {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
}

.profile_icons {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2rem;
}

.profile_icons a {
  color: #fefcfb;
  text-decoration: none;
  font-family: "Source Code Pro", monospace;
  font-weight: 500;
  font-size: 1.5rem;
  transition: color 0.3s ease, transform 0.3s ease;
}
.profile_icons a:hover {
  color: #00ffff;
  transform: scale(1.2);
}

.profile_icons svg {
  width: 40px;
  height: 40px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.profile_icons a:hover svg {
  transform: scale(1.2);
}

.profile h4 {
  font-family: "Source Code Pro", monospace;
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
  font-style: italic;
  padding-bottom: 1rem;
  margin-top: 4rem;
}

.profile h4 > a {
  color: #00ffff;
  text-decoration: none;
  animation: breathe 2s infinite ease-in-out;
}

@keyframes breathe {
  0%,
  100% {
    text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 30px #00ffff,
      0 0 40px #00cccc, 0 0 50px #00cccc, 0 0 60px #00cccc;
    color: #00ffff;
  }
  50% {
    text-shadow: 0 0 5px #00cccc, 0 0 10px #00cccc, 0 0 15px #00cccc,
      0 0 20px #009999, 0 0 25px #009999, 0 0 30px #009999;
    color: #00cece;
  }
}

.main_content {
  flex-grow: 1;
  height: 100%;
  overflow-y: auto;
  padding-right: 1rem;
  scroll-behavior: smooth;
}

.about_me h3 {
  max-width: 37.5rem;
  line-height: 1.6;
  font-family: "Bitcount Prop Single", sans-serif;
  font-weight: 300;
  justify-content: center;
  text-decoration: underline;
}

.about_me p {
  max-width: 37.5rem;
  line-height: 1.6;
  font-family: "Bitcount Prop Single", sans-serif;
  font-weight: 300;
  justify-content: center;
  text-align: justify;
  text-justify: inter-word;
  margin-bottom: 1rem;
}

.work_experience {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 37.5rem;
  margin-top: 1.25rem;
  padding-top: 0.625rem;
}

.work_experience h4 {
  font-family: "Source Code Pro", monospace;
  font-weight: 500;
  font-size: 1.5rem;
  text-decoration: underline #fefcfb;
}

.job {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-left: 2px solid #00ffff;
  padding-left: 1rem;
}

.job h4 {
  font-family: "Source Code Pro", monospace;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: italic;
  text-decoration: underline;
  text-transform: capitalize;
}

.job h3 {
  font-family: "Source Code Pro", monospace;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: italic;
  text-transform: capitalize;
}

.job ul > li {
  list-style-type: disc;
  margin-left: 1.5rem;
  font-family: "Source Code Pro", monospace;
  font-weight: 300;
  text-align: justify;
  text-justify: inter-word;
  line-height: 1.4;
}

.job_description {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: 2rem;
  text-align: justify;
  text-justify: inter-word;
}

.contact_me {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  /* max-width: 25rem; */
  margin-top: 6rem;
}

.contact_me h4 {
  max-width: 37.5rem;
  line-height: 1.6;
  font-family: "Source Code Pro", monospace;
  font-weight: 300;
  justify-content: center;
  text-align: justify;
  text-justify: inter-word;
  margin: 1rem;
}

.contact_me h4 > p {
  text-decoration: underline;
  font-weight: bold;
  text-transform: lowercase;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #aca49c;
  font-size: 0.875rem;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  color: #bbb5af;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #aca49c;
  font-size: 0.875rem;
}

input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
  color: #bbb5af;
}

input::placeholder,
textarea::placeholder {
  color: #aca49c;
  font-size: 0.875rem;
}

input:focus::placeholder,
textarea:focus:placeholder {
  color: #bbb5af;
}

input::-ms-placeholder,
textarea::-ms-placeholder {
  color: #aca49c;
  font-size: 0.875rem;
}

input:focus::-ms-placeholder,
textarea:focus::-ms-placeholder {
  color: #bbb5af;
}

input:hover::-webkit-input-placeholder,
textarea:hover::-webkit-input-placeholder {
  color: #e2dedb;
  font-size: 0.875rem;
}

input:hover:focus::-webkit-input-placeholder,
textarea:hover:focus::-webkit-input-placeholder {
  color: #cbc6c1;
}

input:hover::-moz-placeholder,
textarea:hover::-moz-placeholder {
  color: #e2dedb;
  font-size: 0.875rem;
}

input:hover:focus::-moz-placeholder,
textarea:hover:focus::-moz-placeholder {
  color: #cbc6c1;
}

input:hover::placeholder,
textarea:hover::placeholder {
  color: #e2dedb;
  font-size: 0.875rem;
}

input:hover:focus::placeholder,
textarea:hover:focus::placeholder {
  color: #cbc6c1;
}

input:hover::placeholder,
textarea:hover::placeholder {
  color: #e2dedb;
  font-size: 0.875rem;
}

input:hover:focus::-ms-placeholder,
textarea:hover:focus:-ms-placeholder {
  color: #cbc6c1;
}

#hire-form {
  position: relative;
  width: 31.25rem;
}

input {
  font-family: "Source Code Pro", monospace;
  font-size: 0.875rem;
  width: 29.375rem;
  height: 3.125rem;
  padding: 0 0.9375rem;
  background: transparent;
  outline: none;
  color: #726659;
  border: solid 1px #b3aca7;
  border-bottom: none;
  transition: all 0.3s ease-in-out;
}

input:hover {
  background: #b3aca7;
  color: #e2dedb;
}

textarea {
  width: 29.375rem;
  max-width: 29.375rem;
  height: 6.875rem;
  max-height: 6.875rem;
  padding: 0.9375rem;
  background: transparent;
  outline: none;
  color: #726659;
  font-family: "Lato", sans-serif;
  font-size: 0.875rem;
  border: solid 1px #b3aca7;
  transition: all 0.3s ease-in-out;
}

textarea:hover {
  background: #010101;
  color: #f5ede8;
}

.contact_me button {
  width: 6.25rem;
  height: 2.5rem;
  background: #00ffff;
  border: none;
  border-radius: 0.3125rem;
  color: #1c1816;
  font-family: "Source Code Pro", monospace;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.contact_me button:hover {
  background: #00cccc;
  color: #fefcfb;
  transform: scale(1.05);
}

.contact_me h3 {
  font-family: "Source Code Pro", monospace;
  font-weight: 500;
  font-size: 1.5rem;
  /* margin: 1.5rem; */
  /* padding: 1rem; */
  font-style: normal;
  text-decoration: underline;
  text-transform: capitalize;
}
